-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (34 loc) · 985 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.1'
gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'enumerize'
gem 'jbuilder', '~> 2.7'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'rack-cors'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails', '~> 2.7', '>= 2.7.5'
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails', '~> 4.0'
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
end
group :development do
gem 'better_errors', '~> 2.7'
gem 'binding_of_caller', '~> 0.8.0'
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'shoulda-matchers', '~> 4.3'
gem 'simplecov', '~> 0.18.5', require: false
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]