-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
68 lines (59 loc) · 1.51 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
67
68
source 'https://rubygems.org'
gem 'rails', '4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'bootstrap-sass', '2.3.1.0'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '1.1.2'
gem 'will_paginate', '3.0.4'
gem 'bootstrap-will_paginate', '0.0.9'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development, :test do
gem 'sqlite3', '1.3.7'
gem 'rspec-rails', '2.13.1'
gem 'guard-rspec'
gem 'spork-rails', github: 'railstutorial/spork-rails'
gem 'guard-bundler'
# gem 'guard-cucumber'
gem 'guard-zeus'
# gem 'guard-spork'
gem 'childprocess'
gem 'railroady'
gem 'annotate'
gem "better_errors"
gem "binding_of_caller"
gem 'debugger'
gem 'pry'
gem 'pry-rails'
gem 'bullet' # optimise queries
gem 'debugger' # debugger
gem 'rack-mini-profiler'
end
group :test do
gem 'selenium-webdriver', '2.35.1'
gem 'capybara', '2.1.0'
gem 'factory_girl_rails', '4.2.1'
# gem 'cucumber-rails', '1.3.0', :require => false
gem 'database_cleaner', '~> 1.0.0.RC1'
# Uncomment these lines on OS X.
gem 'rb-fsevent', '0.9.3', :require => false
gem 'growl'
# Uncomment these lines on Linux.
# gem 'rb-inotify'
# gem 'libnotify'
# Uncomment these lines on Windows.
# gem 'rb-fchange', '0.0.6'
# gem 'rb-notifu', '0.0.4'
# gem 'win32console', '1.3.2'
end
group :production do
gem 'rails_12factor'
gem 'pg', '0.15.1'
end