-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
55 lines (49 loc) · 1013 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
source "https://rubygems.org"
gem "rails", "6.0.2.2"
gem "annotate"
gem "bootstrap-sass"
gem "composite_primary_keys"
gem "devise"
gem "dotenv-rails"
gem "draper"
gem "haml-rails"
gem "httparty"
gem "jbuilder"
gem "jquery-rails"
gem "pg"
gem "sass-rails"
gem "uglifier"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.1.0", require: false
group :development do
gem "better_errors"
gem "binding_of_caller"
gem "bullet"
gem "letter_opener"
gem "pry-rails"
gem "rails-erd"
gem "spring"
gem "spring-commands-rspec"
end
group :development, :test do
gem "brakeman"
gem "bundler-audit"
gem "capybara"
gem "factory_bot_rails"
gem "fasterer"
gem "ffaker"
gem "listen"
gem "lol_dba"
gem "rails_best_practices"
gem "rspec-rails", "4.0.0.rc1"
gem "rubocop"
gem "rubocop-faker"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
end
group :test do
gem "database_cleaner"
gem "shoulda-matchers"
gem "simplecov"
end