-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (30 loc) · 909 Bytes
/
Copy pathGemfile
File metadata and controls
36 lines (30 loc) · 909 Bytes
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.3'
gem 'rails', '~> 6.1.5'
gem "active_model_serializers", "~> 0.10.12"
gem 'bootsnap', '>= 1.4.4', require: false
gem "devise_token_auth", "~> 1.1"
gem "kaminari", "~> 1.2"
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem "rack-cors", "~> 1.1"
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'exception_notification', '~> 4.4', '>= 4.4.3'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem "factory_bot_rails", "~> 6.1"
gem "faker", "~> 2.17"
gem "rspec-rails", "~> 5.0"
end
group :development do
gem 'bullet'
gem 'listen', '~> 3.3'
gem 'spring'
gem "letter_opener", "~> 1.7"
end
group :test do
gem "database_cleaner-active_record", "~> 2.0"
gem "shoulda-matchers", "~> 4.5"
gem "simplecov", "~> 0.21.2", require: false
end