-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
34 lines (28 loc) · 875 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
source 'https://rubygems.org'
gem 'coffee-rails', '~> 4.2'
gem 'jbuilder', '~> 2.5'
gem 'js-routes', '~> 1.4.4'
gem 'pg', '~> 1.1.3'
gem 'puma', '~> 3.7'
gem 'rails', '~> 5.1.6'
gem 'sass-rails', '~> 5.0'
gem 'slim-rails', '~> 3.1.3'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver', '~> 3.14.0'
end
group :test do
gem 'rspec-rails', '~> 3.8.0'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'pry-rails', '~> 0.3.6'
gem 'spring', '~> 2.0.2'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
ruby '2.5.1'