-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
40 lines (34 loc) · 809 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'
ruby '2.5.1'
gem 'rails', '~> 5.1.0', '>= 5.1.7'
gem 'pg', '~> 0.18'
gem 'puma', '~> 4.3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem "omniauth-github", '1.4.0'
gem 'figaro'
gem 'redis'
group :development, :test do
gem 'pry'
gem 'rspec-rails', '~> 3.5'
gem 'selenium-webdriver'
gem 'capybara'
gem 'launchy'
gem 'factory_bot_rails'
gem 'table_print'
gem 'awesome_print'
end
group :test do
gem "database_cleaner"
gem 'shoulda-matchers', '~> 3.1'
gem 'simplecov', :require => false
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
end
gem 'rails_12factor', group: :production
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]