-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile.erb
51 lines (45 loc) · 1.22 KB
/
Gemfile.erb
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
source 'https://rubygems.org'
ruby '<%= Generapp::RUBY_VERSION %>'
gem 'honeybadger', '~> 2.0' # Error reporting
gem 'jquery-rails'
gem 'newrelic_rpm' # Performance reports
gem 'pg' # Postgres
gem 'puma' # Use Puma as the app server
gem 'rails', '<%= Generapp::RAILS_VERSION %>'
gem 'redis-rails'
gem 'sass-rails', '~>5.0'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'uglifier'
group :development do
gem 'annotate' # Schema model annotation
gem 'better_errors'
gem 'binding_of_caller'
gem 'bullet' # N+1 queries reporter
gem 'lol_dba' # Missing index reporter
gem 'listen', '~> 3.0.5'
gem 'rails-erd' # ER Diagrams
gem 'rubocop', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'yard', require: false
end
group :development, :test do
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'factory_girl_rails'
gem 'pry-rails'
gem 'pry-remote'
gem 'rspec-rails'
end
group :test do
gem 'database_cleaner'
gem 'faker'
gem 'rails-controller-testing'
gem 'rspec_junit_formatter', '~> 0.2.2'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'timecop' # Time manipulation
end
group :production do
gem 'rack-timeout'
end