forked from VarnaLab/VarnaLab-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
64 lines (53 loc) · 1.16 KB
/
Copy pathGemfile
File metadata and controls
64 lines (53 loc) · 1.16 KB
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
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 'thin'
gem 'compass', :git => 'https://github.com/armstrjare/compass.git', :branch => 'fix_sprockets_static_asset_error'
gem 'compass-960-plugin'
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'
gem 'json'
gem 'twitter'
gem "rails-erd"
group :test do
gem 'jasmine'
gem 'rspec-rails'
gem 'cucumber-rails', :require => false
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 'growl'
gem 'ruby_gntp'
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 'rake guard-debug'// this triggers an error
end
platform :ruby_19 do
gem 'simplecov'
gem 'ruby-debug19'
end
end