-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (37 loc) · 1.13 KB
/
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.3'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'carrierwave'
gem 'cloudinary'
gem 'factory_bot_rails'
gem 'faker', git: 'https://github.com/faker-ruby/faker.git', branch: 'master'
gem 'jbuilder'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'rack-cors'
gem 'rails', '~> 6.0.3', '>= 6.0.3.6'
gem 'rspec-rails'
gem 'rswag'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# faker and factory_bot moved to production, because in this specific use case
# we need to generate data in production
# gem 'factory_bot_rails'
# gem 'faker', git: "https://github.com/faker-ruby/faker.git", branch: 'master'
gem 'rswag-specs'
end
group :development do
gem 'amazing_print'
gem 'jazz_fingers'
gem 'listen', '~> 3.2'
gem 'pry-rails'
gem 'rubocop', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'shoulda-matchers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]