-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
65 lines (57 loc) · 1.25 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
source 'https://rubygems.org'
gem 'rails', '3.2.2'
gem 'mysql2'
gem 'jquery-rails'
gem 'haml-rails'
gem 'formtastic'
gem 'awesome_nested_set'
gem 'acts_as_list'
gem 'rack-mini-profiler'
gem 'carrierwave'
gem 'rmagick'
gem 'draper'
gem 'state_machine'
gem 'activerecord-import'
gem 'ruby-progressbar'
gem 'kaminari'
gem 'meta_search'
gem 'parseexcel'
gem 'dalli'
gem 'cache_digests'
gem 'cocoon'
# Gems used only for compiling assets
group :assets, :cucumber do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# On Linux, use therubyracer as js runtime.
# On Windows, execjs can locate the MS runtime, so we don't need this gem
gem 'therubyracer', :platforms => :ruby_19
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
end
# Test environment
group :test, :cucumber do
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'shoulda'
gem 'autotest-rails'
gem 'capybara-screenshot'
end
group :cucumber do
gem 'selenium-webdriver'
gem 'capybara-selenium-remote'
end
group :development, :test do
gem 'rspec-rails'
gem 'spork'
end
group :darwin do
gem 'autotest-fsevent'
gem 'autotest-growl'
end
group :linux do
gem 'activerecord-postgresql-adapter'
group :development, :test do
gem 'autotest-inotify'
end
end