-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
35 lines (30 loc) · 791 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
source 'https://rubygems.org'
gem 'pg', '~> 0.19.0'
#defaults
gem 'rails', '~> 5.0.6'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
group :development, :test do
gem 'byebug', '~> 10.0.0'
gem 'pry-byebug', '~> 3.6.0'
gem 'rspec-rails', '~> 3.7.2'
gem 'factory_bot_rails', '~> 4.8.2'
gem 'faker', '~> 1.8.7'
end
group :development do
gem 'bullet', '>= 5.7.5'
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'better_errors', '~> 2.4.0'
gem 'rubocop', '~> 0.54.0', require: false
end
group :test do
gem 'shoulda-matchers', '~> 3.1.2'
gem 'shoulda-callback-matchers', '~> 1.1.4'
gem 'rails-controller-testing', '~> 1.0.2'
gem 'capybara', '~> 2.18.0'
end