forked from MakeYourLaws/MakeYourLaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
183 lines (139 loc) · 5.1 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
source 'https://code.stripe.com'
gem 'stripe'
source 'https://rubygems.org'
platform(:rbx) do
gem 'rubysl'
gem 'ffi'
gem 'psych'
end
gem 'puma'
gem 'rails'#, '>= 4.0.1'
gem 'rake'#, '>= 0.9.2.2'
gem 'rack'#, '>= 1.4.1'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# gem 'hashie', '>= 3.2.0'
# Inclusion causes error:
# Superclass mismatch: Object != Hashie::Mash (TypeError)
#
# Rubinius.open_class_under at kernel/delta/rubinius.rb:334
# { } in Object(Module)#__script__ at
# ~/.rvm/gems/rbx-2.2.10/gems/active_paypal_adaptive_payment-0.3.16/lib
# /active_merchant/billing/gateways/paypal_adaptive_payments/ext.rb:7
# Haven't diagnosed why. Works fine without.
gem 'hashie_rails' # see https://github.com/intridea/hashie/blob/master/UPGRADING.md
gem 'redis-rails' # switching out for dalli/memcached
gem "redis-rack-cache"
gem "resque", require: "resque/server"
gem 'resque_mailer'
gem 'resque-scheduler', require: 'resque/scheduler/server'
gem 'resque-retry', require: ['resque-retry', 'resque-retry/server']
gem 'resque-job-stats', require: ['resque-job-stats/server', 'resque/plugins/job_stats']
gem 'resque-pool'
gem 'resque-lock-timeout'
gem 'resque-async-method-enhanced'
gem 'newrelic_rpm'
gem 'airbrake'
# gem 'exception_notification', '>= 4.0.1' # deprecated for airbrake.io
# gem "exception_logger", '>= 0.1.11' # currently incompatible w/ 3.1 :(
gem 'rack-cache'
gem 'rack-tor-tag'#, '>= 0.1'
gem 'rack-attack'
gem 'mysql2'
gem 'json'#, '>= 1.6.6'
gem 'jbuilder'#, '>= 1.2' # JSON APIs. https://github.com/rails/jbuilder
gem 'bcrypt'#, '>= 3.0.1' # To use ActiveModel has_secure_password
# Use unicorn as the web server
# gem 'unicorn'
group :development do
gem 'capistrano', require: false#, '>= 3.0.1'
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rvm', require: false
# gem 'capistrano-puma', require: false # use service instead
# gem 'capistrano-ci' # not cap3 compatible yet https://github.com/railsware/capistrano-ci/pull/4
gem 'term-ansicolor'
platform(:mri) { gem 'debugger' }
platform(:rbx) do
gem 'rubinius-compiler'
gem 'rubinius-debugger'
end
end
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
platform(:mri) { gem 'ruby-prof' }
gem 'webrat'#, '>= 0.7.3'
gem "brakeman", require: false # Rails security scanner
gem 'rubocop', require: false
gem 'bundler-audit', require: false
gem 'rspec-rails'#, '~> 3.0.0.beta'
end
group :test do
gem 'cucumber-rails', :require => false
gem 'database_cleaner'
end
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
gem 'Empact-activerecord-import'#, '>= 0.4.1' # zdennis hasn't yet imported the import profiling fix; this is a bugfix tracking fork
gem "paper_trail"#, '>= 3.0.0'
gem 'paperclip'
gem 'paperclip-meta'
gem 'groupdate' # https://github.com/ankane/groupdate
gem 'mailhopper' # https://github.com/cerebris/mailhopper
# NoMethodError: undefined method `[]' for #<ActiveRecord::Reflection::AssociationReflection:0x007fe9a2743860>
# gem 'has_many_polymorphs', github => 'jystewart/has_many_polymorphs'
# gem 'apotomo' # provides cells. not rails 4 compatible
gem 'state_machine'
# use MYL's fork of NYT's Fech gem, since it has bugfixes and other features that NYT hasn't committed
gem 'myl-fech', :require => 'fech'#, '>= 1.0.2'
gem 'money'#, '>= 5.0.0'
gem 'money-rails'#, '>= 0.8.1'
gem 'activemerchant'
gem 'offsite_payments'
gem "active_paypal_adaptive_payment"
gem 'stripe_event'
gem 'jwt' # for Google Wallet
gem 'amazon_flex_pay'
gem 'bitpay-client', :require => 'bitpay'
gem 'coinbase'#, ">= 1.3.2"
gem "devise"#, ">= 3.1.1"
gem "devise-encryptable"#, ">= 0.1.1c"
gem "omniauth"#, ">= 1.1.0"
gem "omniauth-facebook"#, '>= 1.2.0'
gem "omniauth-github"#, '>= 1.0.1'
gem "omniauth-google-oauth2"#, '>= 0.1.9'
gem "omniauth-openid"#, '>= 1.0.1'
gem "omniauth-twitter"#, '>= 0.0.10'
gem "omniauth-paypal"#, '>= 1.2.1'
gem "omniauth-coinbase"
# gem 'devise-async'
gem 'cancancan' # original cancan went inactive
# gem 'cantango', '>= 0.9.4.7'
gem 'rolify'
gem "rails_email_validator"#, '>= 0.1.4'
gem "it"#, ">= 0.2.3"
gem 'execjs'#, '>= 1.3.0' # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
gem 'uglifier'#, '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'coffee-rails'#, '>= 4.0.0' # Use CoffeeScript for .js.coffee assets and views
gem 'sass-rails'#, '>= 4.0.0' # Use SCSS for stylesheets
gem 'jquery-rails'#, '>= 3.0.0'
gem 'jquery-ui-rails'#, '>= 5.0.0'
gem 'jquery-turbolinks'
gem 'turbolinks' # makes links load faster; see https://github.com/rails/turbolinks
# gem 'jquery_datepicker' # rails 4 incompatible 2013-06-29
gem 'bettertabs'
gem 'phone'
gem 'kramdown'
gem "strip_attributes"#, ">= 1.1.0"
# gem 'client_side_validations' # rails 4 incompatible
gem 'friendly_id'#, ">= 5.0.0"
gem 'twitter'
gem 'uncoil'