-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
51 lines (32 loc) · 771 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.3'
gem "irb", "~> 1.10"
gem 'rails', '~> 7.1'
gem 'sprockets-rails'
gem 'rack-cors'
gem 'puma', '~> 6.0'
gem 'importmap-rails'
gem 'turbo-rails'
gem 'dartsass-rails'
gem 'tzinfo-data'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
gem 'chartkick', '~> 5.0'
gem 'groupdate', '~> 6.0'
gem 'view_component', '~> 3.0'
gem 'devise', '~> 4.8'
gem 'sqlite3', '~> 2'
gem 'dotenv'
group :development, :test do
gem 'benchmark'
gem 'debug'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
end
group :development do
gem 'rails_live_reload'
gem 'web-console'
end