-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (29 loc) · 636 Bytes
/
Gemfile
File metadata and controls
34 lines (29 loc) · 636 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
source 'https://rubygems.org'
ruby '~> 3.0'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'iso-639'
gem 'nokogiri'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma'
gem 'rack-cors'
gem 'rails', '~> 6.0.0.rc1'
group :development, :test do
gem 'bullet'
gem 'bundler-audit'
gem 'factory_bot_rails'
gem 'pry-byebug'
gem 'rspec-rails'
end
group :development do
gem 'gnar-style', '>= 0.8.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rubocop-rspec'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'equivalent-xml'
gem 'fakefs', require: 'fakefs/safe'
gem 'rspec-its'
gem 'shoulda-matchers'
end