-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (39 loc) · 1.04 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
source 'https://rubygems.org'
ruby '2.1.5'
gem 'rails', '4.2.0'
gem 'pg'
gem 'bootstrap-sass'
gem 'bcrypt-ruby', '3.1.2'
gem 'faker'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
# Add "jquery-turbolinks" for fix jquery-turbolink bug
gem 'jquery-turbolinks'
group :development, :test do
gem 'rspec-rails', '~> 3.0'
gem 'rspec-its'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'selenium-webdriver'
gem 'capybara'
gem 'libnotify'
gem 'factory_girl_rails'
end
group :production do
gem 'rails_12factor'
end
group :doc do
gem 'sdoc', '~> 0.4.0', group: :doc
end