-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
49 lines (43 loc) · 916 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '3.0.9'
gem 'mysql2', '0.2.7'
gem 'capistrano'
gem 'capistrano-ext'
gem 'haml'
gem 'compass'
gem 'devise'
gem 'activemerchant'
gem 'simple_form'
gem 'inherited_resources'
gem 'oauth'
gem 'ruby-hmac', :require => 'hmac'
gem 'whenever'
gem 'exception_notification', :require => 'exception_notifier'
gem 'paperclip'
gem 'kaminari'
gem 'ancestry'
gem 'rails_highcharts', '~> 0.0.3'
gem 'stamp'
gem 'mechanize'
# gem 'aws-s3', :require => 'aws/s3'
group :development do
gem 'thin'
gem 'awesome_print', :require => 'ap'
end
group :test do
gem 'ZenTest'
gem 'autotest'
gem 'autotest-rails'
#gem 'spork', '0.9.0.rc.7'
gem 'rspec'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'remarkable_activerecord', '4.0.0.alpha4'
gem 'watchr'
gem 'mocha'
gem 'database_cleaner'
gem 'capybara'
gem 'cucumber'
gem 'cucumber-rails'
gem 'escape_utils'
end