forked from PurposeOpen/Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
120 lines (111 loc) · 3.02 KB
/
Gemfile
File metadata and controls
120 lines (111 loc) · 3.02 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
source 'http://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.13'
gem 'heroku'
gem 'mysql2', '0.3.11'
gem 'haml'
#gem 'sprockets', '~>2.1.2'
gem 'uuid'
#gem 'json', '>= 1.7.7'
gem 'yui-compressor', :git => "git://github.com/oleander/ruby-yui-compressor.git", :require => "yui/compressor"
gem 'will_paginate' #, '~>3.0.3'
gem 'paranoia', :git => 'git://github.com/leonardoborges/paranoia.git'
gem 'acts_as_list'
gem 'delayed_job_active_record', "~>0.3.3"
gem 'delayed_job'#, "~>3.0.1"
gem 'sendgrid' #, '0.1.4'
gem 'paperclip' #, '2.6.0'
gem 'aws-s3'
gem 'aws-sdk' #, '~> 1.3.4'
gem 'activemerchant' #, "~> 1.20.3"
gem "devise" #, "2.0.5"
gem 'cancan'
gem 'friendly_id' #, "4.0.8"
gem 'nokogiri'
gem 'geokit-rails3', :git => 'git://github.com/leonardoborges/geokit-rails3.git'
gem 'app_constants'
gem 'escape_utils' # Has to do with this http://stackoverflow.com/questions/3622394/ruby-1-9-2-strange-warning-when-running-cucumber-specs
gem "gritter" #, "1.0.1"
gem 'sunspot_rails' #, '~> 1.3.0'
gem "dynamic_attributes" #, "~> 1.2.0"
gem "pdfkit"
#gem "thin"
gem "puma"
gem "jquery-rails" #, "~> 2.0.2"
gem 'enumerated_attribute'
gem 'seed-fu' #, '~> 2.2.0'
gem 'activerecord-import'
gem 'newrelic_rpm' #, '3.5.3.25'
gem 'redcarpet'
gem 'activemodel-warnings'
gem 'airbrake'
gem 'money'
gem 'google_currency'
gem 'profanalyzer', :git => 'git://github.com/purposecampaigns/profanalyzer.git'
gem 'tinymce-rails'
gem 'bcrypt-ruby' #, '~> 3.0.1'
gem 'compass-rails' #, '~> 1.0.1'
gem 'compass-960-plugin'
gem 'sass-rails' #, "~> 3.2.4"
gem 'deep_cloneable'
gem 'purpose_country_select', '~> 0.0.5', :git => "https://purposetw-deploy:s3nseofpurpose@github.com/PurposeTW/purpose_country_select.git"
#gem 'hirefire-resource'
gem 'hirefireapp'
gem 'clockwork'
gem 'foreigner'
gem 'roo'
gem 'recurly'
gem 'font-awesome-rails'
gem 'json', '1.6.8'
gem 'rack-timeout'
group :assets do
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'therubyracer'
gem 'debugger'
# gem 'bullet'
gem 'better_errors'
gem 'binding_of_caller'
#gem 'pry-stack_explorer'
gem 'annotate'
end
group :production, :staging do
gem 'dalli'
end
group :development, :staging do
gem 'oink'
end
group :development, :test do
gem "rails_best_practices" #, "~> 1.7.2"
gem 'jslint_on_rails'
gem 'rspec-rails' #, '~> 2.8.1'
gem 'guard-rspec' #, '~> 0.7.0'
#gem 'thin'
gem 'launchy'
gem 'selenium-webdriver' #, "~> 2.27.2"
gem 'capybara', '1.1.2'
gem 'database_cleaner' #, "~> 0.7.1"
gem 'cucumber-rails', '1.2.0', :require => false
gem 'cucumber', '1.1.2'
gem 'launchy'
gem 'factory_girl_rails', "~> 4.2.0"
gem 'email_spec'
gem 'jasmine' #, '~> 1.1.2'
gem 'rack-test'
gem 'sunspot_solr'
gem "sunspot_matchers" #, "~> 1.3.0.1"
gem "sunspot_test" #, "~> 0.4.0"
gem "wkhtmltopdf" #, "~> 0.1.2"
gem "foreman"
gem "rspec_junit_formatter"
gem 'simplecov'
gem 'rspec-instafail'
gem 'rspec-html-matchers' #, '~> 0.2.3'
gem 'parallel_tests'
gem 'spork-rails'
gem 'shoulda-matchers'
gem 'quiet_assets'
gem 'subcontractor'
gem 'fakeweb', :require => false
end