-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (34 loc) · 858 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.2"
gem "administrate"
gem "bcrypt"
gem "bootsnap", require: false
gem "jbuilder"
gem "pg"
gem "puma"
gem "rails", "~> 6.0.3"
gem "sass-rails"
gem "turbolinks"
gem "webpacker"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "bundler-audit", ">= 0.7.0", require: false
gem "factory_bot_rails"
gem "rspec-rails"
gem "selenium-webdriver"
gem "standard"
end
group :development do
gem "listen"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console"
end
group :test do
gem "capybara"
gem "launchy"
gem "shoulda-matchers"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]