-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
57 lines (46 loc) · 1.01 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
source 'http://rubygems.org'
gem 'rails', '~> 3.2.5'
gem 'sqlite3'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'spork', '~> 0.9.0.rc9'
gem 'compass', :git => 'https://github.com/armstrjare/compass.git', :branch => 'fix_sprockets_static_asset_error'
gem 'therubyracer'
gem 'slim'
gem 'appconfig'
gem 'jquery-rails'
gem 'simple_form'
gem 'inherited_resources'
gem 'kaminari'
gem 'awesome_nested_set', :git => 'git://github.com/collectiveidea/awesome_nested_set.git'
gem 'devise'
group :test do
gem 'jasmine'
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'factory_girl_rails'
gem 'faker'
gem 'shoulda-matchers'
gem 'minitest'
gem 'launchy'
gem 'capybara'
gem 'database_cleaner'
gem 'timecop'
gem 'webrat'
gem 'turn', :require => false
gem 'guard'
gem 'guard-rspec', '~> 0.6.0'
gem 'guard-bundler'
gem 'guard-cucumber'
end
unless ENV["CI"]
platform :ruby_18 do
gem 'rcov'
gem 'ruby-debug'
end
platform :ruby_19 do
gem 'simplecov'
gem 'ruby-debug19'
end
end