-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (45 loc) · 1.16 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'
gem 'bootstrap-sass'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '1.1.2'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'roo'
gem 'friendly_id', github: 'norman/friendly_id', branch: '5.0.0.rc2'
gem 'pg'
gem 'sass-rails', '~> 4.0.0.rc1'
gem 'uglifier', '2.1.1'
gem 'coffee-rails', '4.0.0'
gem 'jquery-rails', '2.2.1'
gem 'turbolinks', '1.1.1'
gem 'jbuilder', '1.0.2'
group :development, :test do
gem 'rspec-rails'
# gem 'guard-rspec', '2.5.0'
# gem 'spork-rails', github: 'railstutorial/spork-rails'
# gem 'guard-spork', '1.5.0'
gem 'childprocess', '0.3.6'
end
group :test do
gem 'capybara-webkit'
gem 'rubyzip', '< 1.0.0'
gem 'capybara'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'launchy'
# Uncomment these lines on OS X.
gem 'rb-fsevent', '0.9.3', :require => false
gem 'growl', '1.0.3'
# Uncomment these lines on Linux.
# gem 'rb-inotify', '0.9.0'
# gem 'libnotify', '0.8.0'
# Uncomment these lines on Windows.
# gem 'rb-fchange', '0.0.6'
# gem 'rb-notifu', '0.0.4'
# gem 'win32console', '1.3.2'
end
group :doc do
gem 'sdoc', '0.3.20', require: false
end