forked from diowa/ruby2-rails5-bootstrap-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
66 lines (53 loc) · 1.77 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.3'
gem 'rails', '5.2.1'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1'
# Use Puma as the app server
gem 'puma', '~> 3.12'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 3.5'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# Template Engine
gem 'slim-rails', '~> 3.2'
# App monitoring
gem 'newrelic_rpm', '~> 5.4'
group :development, :test do
gem 'byebug', '~> 10.0', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails', '~> 4.11'
gem 'faker', '~> 1.9'
gem 'pry', '~> 0.11.3'
gem 'pry-byebug', '~> 3.6'
gem 'pry-rails', '~> 0.3.6'
gem 'rspec-rails', '~> 3.8'
gem 'rubocop', '~> 0.60.0', require: false
gem 'rubocop-rspec', '~> 1.30', require: false
gem 'slim_lint', '~> 0.16.0', require: false
end
group :development do
# gem 'better_errors', '~> 2.4'
# gem 'binding_of_caller', '~> 0.7.3'
# gem 'bullet', '~> 5.6'
gem 'listen', '>= 3.0.5', '< 3.2'
# gem 'meta_request', '~> 0.4.3'
gem 'spring', '~> 2.0'
gem 'spring-commands-rspec', '~> 1.0'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '~> 3.7'
end
group :test do
gem 'capybara', '~> 3.10'
gem 'coveralls_reborn', '~> 0.12.0', require: false
gem 'email_spec', '~> 2.2'
gem 'selenium-webdriver', '~> 3.14'
gem 'simplecov', '~> 0.16.1', require: false
gem 'webmock', '~> 3.4', require: false
end
group :staging, :production do
gem 'rack-timeout', '~> 0.5.1'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '~> 1.2018', platforms: %i[mingw mswin x64_mingw jruby]