catarse_paypal_express 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +0 -2
  3. data/.rspec +2 -0
  4. data/.travis.yml +13 -0
  5. data/Gemfile +2 -126
  6. data/Gemfile.lock +88 -477
  7. data/README.md +3 -12
  8. data/app/assets/javascripts/catarse_paypal_express.js +6 -0
  9. data/app/assets/javascripts/catarse_paypal_express/paypal_form.js +19 -0
  10. data/app/assets/javascripts/catarse_paypal_express/user_document.js +111 -0
  11. data/app/controllers/catarse_paypal_express/paypal_express_controller.rb +113 -0
  12. data/app/views/catarse_paypal_express/paypal_express/review.html.slim +13 -0
  13. data/catarse_paypal_express.gemspec +4 -3
  14. data/config/initializers/active_merchant.rb +2 -0
  15. data/config/initializers/register.rb +5 -0
  16. data/config/locales/en.yml +7 -1
  17. data/config/locales/pt.yml +6 -0
  18. data/config/routes.rb +11 -5
  19. data/lib/catarse_paypal_express/version.rb +1 -1
  20. data/spec/controllers/catarse_paypal_express/paypal_express_controller_spec.rb +304 -0
  21. data/spec/fixtures/ipn_data.txt +1 -0
  22. data/spec/spec_helper.rb +12 -26
  23. data/spec/support/payment_engines.rb +3 -0
  24. data/test/dummy/README.rdoc +261 -0
  25. data/test/dummy/Rakefile +7 -0
  26. data/test/dummy/app/assets/javascripts/application.js +15 -0
  27. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  28. data/test/dummy/app/controllers/application_controller.rb +3 -0
  29. data/test/dummy/app/helpers/application_helper.rb +2 -0
  30. data/test/dummy/app/mailers/.gitkeep +0 -0
  31. data/test/dummy/app/models/.gitkeep +0 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/config.ru +4 -0
  34. data/test/dummy/config/application.rb +58 -0
  35. data/test/dummy/config/boot.rb +10 -0
  36. data/test/dummy/config/database.yml +52 -0
  37. data/test/dummy/config/environment.rb +5 -0
  38. data/test/dummy/config/environments/development.rb +37 -0
  39. data/test/dummy/config/environments/production.rb +67 -0
  40. data/test/dummy/config/environments/test.rb +37 -0
  41. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/test/dummy/config/initializers/inflections.rb +15 -0
  43. data/test/dummy/config/initializers/mime_types.rb +5 -0
  44. data/test/dummy/config/initializers/secret_token.rb +7 -0
  45. data/test/dummy/config/initializers/session_store.rb +8 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +5 -0
  48. data/test/dummy/config/routes.rb +4 -0
  49. data/test/dummy/lib/assets/.gitkeep +0 -0
  50. data/test/dummy/log/.gitkeep +0 -0
  51. data/test/dummy/public/404.html +26 -0
  52. data/test/dummy/public/422.html +26 -0
  53. data/test/dummy/public/500.html +25 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/script/rails +6 -0
  56. metadata +112 -34
  57. data/app/controllers/catarse_paypal_express/payment/paypal_express_controller.rb +0 -119
  58. data/lib/catarse_paypal_express/processors.rb +0 -5
  59. data/lib/catarse_paypal_express/processors/paypal.rb +0 -26
  60. data/spec/controllers/catarse_paypal_express/payment/paypal_express_controller_spec.rb +0 -177
  61. data/spec/lib/processors/paypal_spec.rb +0 -33
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dc9fc48f97c28686ee5bf0878595c15d15eb9522
4
+ data.tar.gz: cc0d745e795b30c264242eb85f7dcfc528316c2d
5
+ SHA512:
6
+ metadata.gz: 14c2a472cca525db9b271b8c1e865945d43493d535af6ca9e47742042c29216b3873c94ee2e26088c413a65bda59ea78e6dbcd2da4e50b4ac4eab2a9746489f2
7
+ data.tar.gz: 198f7972863668f63af6c68bdbbe4a0d39a33160b7c9f7f1a862987b6d4aab73eb80a354be65e5a832e1a5b0e286ffeefc1a4764a598c050b0c80260a8e5925c
data/.gitignore CHANGED
@@ -5,5 +5,3 @@ test/dummy/db/*.sqlite3
5
5
  test/dummy/log/*.log
6
6
  test/dummy/tmp/
7
7
  test/dummy/.sass-cache
8
- test/dummy/
9
- catarse_paypal_express-0.0.1.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format d
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ rvm:
2
+ - 1.9.3
3
+
4
+ before_script:
5
+ - "psql -c 'create role catarse SUPERUSER LOGIN;' postgres"
6
+ - "psql -c 'create database catarse_test;' -U catarse postgres"
7
+
8
+ script:
9
+ - "bundle exec rspec spec"
10
+
11
+ branches:
12
+ only:
13
+ - master
data/Gemfile CHANGED
@@ -1,131 +1,7 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
- # Declare your gem's dependencies in catarse_paypal_express.gemspec.
4
- # Bundler will treat runtime dependencies like base dependencies, and
5
- # development dependencies will be added by default to the :development group.
6
3
  gemspec
7
4
 
8
- # jquery-rails is used by the dummy application
9
- gem "jquery-rails"
10
-
11
- # Declare any dependencies that are still in development here instead of in
12
- # your gemspec. These might include edge Rails or gems from your path or
13
- # Git. Remember to move these dependencies to your gemspec before releasing
14
- # your gem to rubygems.org.
15
- source :gemcutter
16
- source 'http://gems.github.com'
17
-
18
- gem 'rails', '3.2.6'
19
- gem 'rake', '0.9.2.2'
20
-
21
- # Database and data related [Putting pg to the end because of a weird bug with Lion, pg and openssl]
22
5
  gem 'pg'
23
- gem 'foreigner'
24
- gem 'activerecord-postgresql-adapter'
25
-
26
- gem 'catarse_paypal_express', :path => '~/store/code/catarse_paypal_express'
27
- #gem 'catarse_paypal_express', '~> 0.0.2'
28
- gem 'catarse_moip', '~> 0.1.1'
29
- gem 'moip_catarse', '~> 1.0.6', require: 'moip'
30
-
31
- gem 'maxim-sexy_pg_constraints'
32
- gem 'dalli'
33
- gem 'draper'
34
-
35
- # Frontend stuff
36
- gem 'jquery-rails'
37
- gem 'slim'
6
+ gem 'activemerchant', '>= 1.17.0', require: 'active_merchant'
38
7
  gem 'slim-rails'
39
-
40
- # Authentication and Authorization
41
- gem 'omniauth', "~> 1.1.0"
42
- gem 'omniauth-openid', '~> 1.0.1'
43
- gem 'omniauth-twitter', '~> 0.0.12'
44
- gem 'omniauth-facebook', '~> 1.2.0'
45
- gem 'omniauth-github', '~> 1.0.1'
46
- gem 'omniauth-linkedin', '~> 0.0.6'
47
- gem 'omniauth-yahoo', '~> 0.0.4'
48
- gem 'devise', '1.5.3'
49
- gem 'cancan'
50
-
51
-
52
- # Error reporting
53
- gem "airbrake"
54
-
55
- # Email marketing
56
- #gem 'mailchimp'
57
- gem 'catarse_mailchimp'
58
-
59
- # HTML manipulation and formatting
60
- gem 'formtastic', "~> 2.1.1"
61
- gem "auto_html", '= 1.4.2'
62
- gem 'kaminari'
63
- gem 'rails_autolink', '~> 1.0.7'
64
-
65
- # Uploads
66
- gem 'carrierwave', '= 0.5.8'
67
- gem 'rmagick'
68
- gem 'fog'
69
-
70
- # Other Tools
71
- gem 'feedzirra'
72
- gem 'validation_reflection', git: 'git://github.com/ncri/validation_reflection.git'
73
- gem 'inherited_resources', '1.3.1'
74
- gem 'has_scope'
75
- gem 'spectator-validates_email', require: 'validates_email'
76
- gem 'has_vimeo_video', '~> 0.0.5'
77
- gem 'wirble'
78
- gem "on_the_spot"
79
- gem 'weekdays'
80
- gem 'brcep'
81
- gem "RedCloth"
82
- gem 'unicode'
83
- gem 'enumerate_it'
84
- gem 'httparty', '~> 0.6.1'
85
- gem "rack-timeout"
86
- gem 'tumblr-api'
87
-
88
- # Translations
89
- gem 'http_accept_language'
90
- gem 'web_translate_it'
91
- gem 'routing-filter' #, :git => 'git://github.com/svenfuchs/routing-filter.git'
92
-
93
- # Administration
94
- gem 'activeadmin', git: 'git://github.com/gregbell/active_admin.git'
95
- gem "meta_search", "1.1.3"
96
-
97
- # Payment
98
- gem 'activemerchant', '1.17.0', require: 'active_merchant'
99
- gem 'httpclient', '2.2.5'
100
- gem 'selenium-webdriver', '~> 2.25.0'
101
- gem 'bourbon'
102
- gem 'paypal-express', :require => 'paypal'
103
-
104
- # Server
105
- gem 'thin'
106
-
107
- group :assets do
108
- gem 'sass-rails', '~> 3.2.5'
109
- gem 'coffee-rails', '~> 3.2.2'
110
- gem "compass-rails", "~> 1.0.1"
111
- gem 'uglifier', '>= 1.0.3'
112
- gem 'compass-960-plugin', '~> 0.10.4'
113
- end
114
-
115
- group :test, :development do
116
- gem 'annotate'
117
- gem 'launchy'
118
- gem 'database_cleaner'
119
- gem 'steak', "~> 1.1.0"
120
- gem 'rspec-rails', "~> 2.10.0"
121
- gem 'rcov', '= 0.9.11'
122
- gem 'mocha', '0.10.4'
123
- gem 'shoulda'
124
- gem 'factory_girl_rails', '1.7.0'
125
- gem 'capybara', ">= 1.0.1"
126
- end
127
-
128
- group :development do
129
- gem 'mailcatcher'
130
- gem 'ruby-debug19'
131
- end
data/Gemfile.lock CHANGED
@@ -1,530 +1,141 @@
1
- GIT
2
- remote: git://github.com/gregbell/active_admin.git
3
- revision: 3130933893714019684d5713e6afba92a7717d2d
4
- specs:
5
- activeadmin (0.4.4)
6
- arbre (>= 1.0.0.rc4)
7
- bourbon (>= 1.0.0)
8
- devise (>= 1.1.2)
9
- fastercsv
10
- formtastic (>= 2.0.0)
11
- inherited_resources (>= 1.3.1)
12
- jquery-rails (>= 1.0.0)
13
- kaminari (>= 0.13.0)
14
- meta_search (>= 0.9.2)
15
- rails (>= 3.0.0)
16
- sass (>= 3.1.0)
17
-
18
- GIT
19
- remote: git://github.com/ncri/validation_reflection.git
20
- revision: 60320e6beb088808fd625a8d958dbd0d2661d494
21
- specs:
22
- validation_reflection (1.0.0)
23
-
24
1
  PATH
25
2
  remote: .
26
3
  specs:
27
- catarse_paypal_express (0.0.2)
28
- activemerchant (~> 1.17.0)
4
+ catarse_paypal_express (1.0.0)
5
+ activemerchant (>= 1.17.0)
29
6
  rails (~> 3.2.6)
7
+ slim-rails
30
8
 
31
9
  GEM
32
- remote: http://rubygems.org/
33
- remote: http://rubygems.org/
34
- remote: http://gems.github.com/
10
+ remote: https://rubygems.org/
35
11
  specs:
36
- RedCloth (4.2.9)
37
- actionmailer (3.2.6)
38
- actionpack (= 3.2.6)
39
- mail (~> 2.4.4)
40
- actionpack (3.2.6)
41
- activemodel (= 3.2.6)
42
- activesupport (= 3.2.6)
12
+ actionmailer (3.2.13)
13
+ actionpack (= 3.2.13)
14
+ mail (~> 2.5.3)
15
+ actionpack (3.2.13)
16
+ activemodel (= 3.2.13)
17
+ activesupport (= 3.2.13)
43
18
  builder (~> 3.0.0)
44
19
  erubis (~> 2.7.0)
45
- journey (~> 1.0.1)
46
- rack (~> 1.4.0)
20
+ journey (~> 1.0.4)
21
+ rack (~> 1.4.5)
47
22
  rack-cache (~> 1.2)
48
23
  rack-test (~> 0.6.1)
49
- sprockets (~> 2.1.3)
50
- activemerchant (1.17.0)
24
+ sprockets (~> 2.2.1)
25
+ active_utils (1.0.5)
51
26
  activesupport (>= 2.3.11)
52
- braintree (>= 2.0.0)
27
+ i18n
28
+ activemerchant (1.33.0)
29
+ active_utils (>= 1.0.2)
30
+ activesupport (>= 2.3.14)
53
31
  builder (>= 2.0.0)
32
+ i18n
54
33
  json (>= 1.5.1)
55
- activemodel (3.2.6)
56
- activesupport (= 3.2.6)
34
+ money
35
+ nokogiri
36
+ activemodel (3.2.13)
37
+ activesupport (= 3.2.13)
57
38
  builder (~> 3.0.0)
58
- activerecord (3.2.6)
59
- activemodel (= 3.2.6)
60
- activesupport (= 3.2.6)
39
+ activerecord (3.2.13)
40
+ activemodel (= 3.2.13)
41
+ activesupport (= 3.2.13)
61
42
  arel (~> 3.0.2)
62
43
  tzinfo (~> 0.3.29)
63
- activerecord-postgresql-adapter (0.0.1)
64
- pg
65
- activeresource (3.2.6)
66
- activemodel (= 3.2.6)
67
- activesupport (= 3.2.6)
68
- activesupport (3.2.6)
69
- i18n (~> 0.6)
44
+ activeresource (3.2.13)
45
+ activemodel (= 3.2.13)
46
+ activesupport (= 3.2.13)
47
+ activesupport (3.2.13)
48
+ i18n (= 0.6.1)
70
49
  multi_json (~> 1.0)
71
- addressable (2.3.2)
72
- airbrake (3.1.2)
73
- activesupport
74
- builder
75
- annotate (2.5.0)
76
- rake
77
- arbre (1.0.0.rc4)
78
- activesupport (>= 3.0.0)
79
- archive-tar-minitar (0.5.2)
80
50
  arel (3.0.2)
81
- attr_required (0.0.5)
82
- auto_html (1.4.2)
83
- RedCloth
84
- redcarpet
85
- rinku
86
- tag_helper
87
- bcrypt-ruby (3.0.1)
88
- bourbon (2.1.1)
89
- sass (>= 3.1)
90
- braintree (2.16.0)
91
- builder (>= 2.0.0)
92
- brcep (3.1.0)
93
- builder (3.0.0)
94
- cancan (1.6.8)
95
- capybara (1.1.2)
96
- mime-types (>= 1.16)
97
- nokogiri (>= 1.3.3)
98
- rack (>= 1.0.0)
99
- rack-test (>= 0.5.4)
100
- selenium-webdriver (~> 2.0)
101
- xpath (~> 0.1.4)
102
- carrierwave (0.5.8)
103
- activesupport (~> 3.0)
104
- catarse_mailchimp (0.0.1)
105
- mailchimp
106
- supermodel
107
- catarse_moip (0.1.1)
108
- moip_catarse (~> 1.0.6)
109
- rails (~> 3.2.6)
110
- childprocess (0.3.5)
111
- ffi (~> 1.0, >= 1.0.6)
112
- chunky_png (1.2.6)
113
- coffee-rails (3.2.2)
114
- coffee-script (>= 2.2.0)
115
- railties (~> 3.2.0)
116
- coffee-script (2.2.0)
117
- coffee-script-source
118
- execjs
119
- coffee-script-source (1.3.3)
120
- columnize (0.3.6)
121
- compass (0.12.2)
122
- chunky_png (~> 1.2)
123
- fssm (>= 0.2.7)
124
- sass (~> 3.1)
125
- compass-960-plugin (0.10.4)
126
- compass (>= 0.10.0)
127
- compass-rails (1.0.3)
128
- compass (>= 0.12.2, < 0.14)
129
- crack (0.1.8)
130
- curb (0.7.18)
131
- daemons (1.1.8)
132
- dalli (2.1.0)
133
- database_cleaner (0.8.0)
134
- devise (1.5.3)
135
- bcrypt-ruby (~> 3.0)
136
- orm_adapter (~> 0.0.3)
137
- warden (~> 1.1)
138
- diff-lcs (1.1.3)
139
- draper (0.17.0)
140
- actionpack (~> 3.2)
141
- activesupport (~> 3.2)
142
- enumerate_it (0.7.16)
143
- activesupport (>= 3.0.0)
51
+ builder (3.0.4)
52
+ database_cleaner (1.0.1)
53
+ diff-lcs (1.2.4)
144
54
  erubis (2.7.0)
145
- eventmachine (0.12.10)
146
- excon (0.6.6)
147
- execjs (1.4.0)
148
- multi_json (~> 1.0)
149
- factory_girl (2.6.4)
150
- activesupport (>= 2.3.9)
151
- factory_girl_rails (1.7.0)
152
- factory_girl (~> 2.6.0)
153
- railties (>= 3.0.0)
154
- faraday (0.8.1)
155
- multipart-post (~> 1.1)
156
- fastercsv (1.5.5)
157
- feedzirra (0.0.31)
158
- activesupport (>= 3.0.8)
159
- builder (~> 3.0.0)
160
- curb (~> 0.7.15)
161
- i18n (>= 0.5.0)
162
- loofah (~> 1.0.0)
163
- nokogiri (~> 1.4.4)
164
- rake (>= 0.9.2)
165
- rdoc (~> 3.8)
166
- sax-machine (~> 0.0.20)
167
- ffi (1.1.4)
168
- fog (0.9.0)
169
- builder
170
- excon (~> 0.6.1)
171
- formatador (>= 0.1.3)
172
- json
173
- mime-types
174
- net-scp (>= 1.0.4)
175
- net-ssh (>= 2.1.4)
176
- nokogiri (>= 1.4.4)
177
- ruby-hmac
178
- foreigner (1.2.0)
179
- activerecord (>= 3.0.0)
180
- formatador (0.2.3)
181
- formtastic (2.1.1)
182
- actionpack (~> 3.0)
183
- fssm (0.2.9)
184
- haml (3.1.6)
185
- has_scope (0.5.1)
186
- has_vimeo_video (0.0.5)
187
- supermodel
188
- vimeo
189
- hashie (1.2.0)
190
- hike (1.2.1)
191
- http_accept_language (1.0.2)
192
- httparty (0.6.1)
193
- crack (= 0.1.8)
194
- httpauth (0.1)
195
- httpclient (2.2.5)
196
- i18n (0.6.0)
197
- inherited_resources (1.3.1)
198
- has_scope (~> 0.5.0)
199
- responders (~> 0.6)
200
- journey (1.0.4)
201
- jquery-rails (2.0.2)
202
- railties (>= 3.2.0, < 5.0)
203
- thor (~> 0.14)
204
- json (1.7.3)
205
- json_pure (1.7.4)
206
- jwt (0.1.5)
207
- multi_json (>= 1.0)
208
- kaminari (0.13.0)
209
- actionpack (>= 3.0.0)
55
+ factory_girl (4.2.0)
210
56
  activesupport (>= 3.0.0)
57
+ factory_girl_rails (4.2.1)
58
+ factory_girl (~> 4.2.0)
211
59
  railties (>= 3.0.0)
212
- launchy (2.1.2)
213
- addressable (~> 2.3)
214
- libwebsocket (0.1.5)
215
- addressable
216
- linecache19 (0.5.12)
217
- ruby_core_source (>= 0.1.4)
218
- loofah (1.0.0)
219
- nokogiri (>= 1.3.3)
220
- mail (2.4.4)
221
- i18n (>= 0.4.0)
60
+ hike (1.2.2)
61
+ i18n (0.6.1)
62
+ journey (1.0.4)
63
+ json (1.8.0)
64
+ mail (2.5.4)
222
65
  mime-types (~> 1.16)
223
66
  treetop (~> 1.4.8)
224
- mailcatcher (0.5.8)
225
- activesupport (~> 3.0)
226
- eventmachine (~> 0.12)
227
- haml (~> 3.1)
228
- mail (~> 2.3)
229
- sinatra (~> 1.2)
230
- skinny (~> 0.2, >= 0.2.1)
231
- sqlite3 (~> 1.3)
232
- thin (~> 1.2)
233
- mailchimp (0.0.7.alpha)
234
- httparty
235
- maxim-sexy_pg_constraints (0.1.3)
236
- meta_search (1.1.3)
237
- actionpack (~> 3.1)
238
- activerecord (~> 3.1)
239
- activesupport (~> 3.1)
240
- polyamorous (~> 0.5.0)
241
- metaclass (0.0.1)
242
- mime-types (1.19)
243
- mocha (0.10.4)
244
- metaclass (~> 0.0.1)
245
- moip_catarse (1.0.6)
246
- activesupport (>= 2.3.2)
247
- httparty (~> 0.6.1)
248
- nokogiri (~> 1.4.2)
249
- multi_json (1.3.6)
250
- multipart-post (1.1.5)
251
- net-scp (1.0.4)
252
- net-ssh (>= 1.99.1)
253
- net-ssh (2.5.2)
254
- nokogiri (1.4.7)
255
- oauth (0.4.6)
256
- oauth2 (0.8.0)
257
- faraday (~> 0.8)
258
- httpauth (~> 0.1)
259
- jwt (~> 0.1.4)
260
- multi_json (~> 1.0)
261
- rack (~> 1.2)
262
- omniauth (1.1.0)
263
- hashie (~> 1.2)
264
- rack
265
- omniauth-facebook (1.2.0)
266
- omniauth-oauth2 (~> 1.0.0)
267
- omniauth-github (1.0.1)
268
- omniauth (~> 1.0)
269
- omniauth-oauth2 (~> 1.0)
270
- omniauth-linkedin (0.0.6)
271
- omniauth-oauth (~> 1.0.0)
272
- omniauth-oauth (1.0.1)
273
- oauth
274
- omniauth (~> 1.0)
275
- omniauth-oauth2 (1.0.3)
276
- oauth2 (~> 0.8.0)
277
- omniauth (~> 1.0)
278
- omniauth-openid (1.0.1)
279
- omniauth (~> 1.0)
280
- rack-openid (~> 1.3.1)
281
- omniauth-twitter (0.0.12)
282
- multi_json (~> 1.3)
283
- omniauth-oauth (~> 1.0)
284
- omniauth-yahoo (0.0.4)
285
- omniauth-oauth (~> 1.0)
286
- on_the_spot (1.0.1)
287
- json_pure (>= 1.4.6)
288
- orm_adapter (0.0.7)
289
- paypal-express (0.5.0)
290
- activesupport (>= 2.3)
291
- attr_required (>= 0.0.5)
292
- i18n
293
- restclient_with_cert
294
- pg (0.14.0)
295
- polyamorous (0.5.0)
296
- activerecord (~> 3.0)
67
+ mime-types (1.24)
68
+ money (5.1.1)
69
+ i18n (~> 0.6.0)
70
+ multi_json (1.7.6)
71
+ nokogiri (1.5.9)
72
+ pg (0.15.1)
297
73
  polyglot (0.3.3)
298
- rack (1.4.1)
74
+ rack (1.4.5)
299
75
  rack-cache (1.2)
300
76
  rack (>= 0.4)
301
- rack-openid (1.3.1)
302
- rack (>= 1.1.0)
303
- ruby-openid (>= 2.1.8)
304
- rack-protection (1.2.0)
77
+ rack-ssl (1.3.3)
305
78
  rack
306
- rack-ssl (1.3.2)
307
- rack
308
- rack-test (0.6.1)
79
+ rack-test (0.6.2)
309
80
  rack (>= 1.0)
310
- rack-timeout (0.0.3)
311
- rails (3.2.6)
312
- actionmailer (= 3.2.6)
313
- actionpack (= 3.2.6)
314
- activerecord (= 3.2.6)
315
- activeresource (= 3.2.6)
316
- activesupport (= 3.2.6)
81
+ rails (3.2.13)
82
+ actionmailer (= 3.2.13)
83
+ actionpack (= 3.2.13)
84
+ activerecord (= 3.2.13)
85
+ activeresource (= 3.2.13)
86
+ activesupport (= 3.2.13)
317
87
  bundler (~> 1.0)
318
- railties (= 3.2.6)
319
- rails_autolink (1.0.9)
320
- rails (~> 3.1)
321
- railties (3.2.6)
322
- actionpack (= 3.2.6)
323
- activesupport (= 3.2.6)
88
+ railties (= 3.2.13)
89
+ railties (3.2.13)
90
+ actionpack (= 3.2.13)
91
+ activesupport (= 3.2.13)
324
92
  rack-ssl (~> 1.3.2)
325
93
  rake (>= 0.8.7)
326
94
  rdoc (~> 3.4)
327
95
  thor (>= 0.14.6, < 2.0)
328
- rake (0.9.2.2)
329
- rcov (0.9.11)
330
- rdoc (3.12)
96
+ rake (10.0.4)
97
+ rdoc (3.12.2)
331
98
  json (~> 1.4)
332
- redcarpet (2.1.1)
333
- responders (0.9.2)
334
- railties (~> 3.1)
335
- rest-client (1.6.7)
336
- mime-types (>= 1.16)
337
- restclient_with_cert (0.0.8)
338
- rest-client (>= 1.6)
339
- rinku (1.7.0)
340
- rmagick (2.13.1)
341
- routing-filter (0.3.1)
342
- actionpack
343
- rspec (2.10.0)
344
- rspec-core (~> 2.10.0)
345
- rspec-expectations (~> 2.10.0)
346
- rspec-mocks (~> 2.10.0)
347
- rspec-core (2.10.1)
348
- rspec-expectations (2.10.0)
349
- diff-lcs (~> 1.1.3)
350
- rspec-mocks (2.10.1)
351
- rspec-rails (2.10.1)
99
+ rspec-core (2.13.1)
100
+ rspec-expectations (2.13.0)
101
+ diff-lcs (>= 1.1.3, < 2.0)
102
+ rspec-mocks (2.13.1)
103
+ rspec-rails (2.13.2)
352
104
  actionpack (>= 3.0)
353
105
  activesupport (>= 3.0)
354
106
  railties (>= 3.0)
355
- rspec (~> 2.10.0)
356
- ruby-debug-base19 (0.11.25)
357
- columnize (>= 0.3.1)
358
- linecache19 (>= 0.5.11)
359
- ruby_core_source (>= 0.1.4)
360
- ruby-debug19 (0.11.6)
361
- columnize (>= 0.3.1)
362
- linecache19 (>= 0.5.11)
363
- ruby-debug-base19 (>= 0.11.19)
364
- ruby-hmac (0.4.0)
365
- ruby-openid (2.2.0)
366
- ruby_core_source (0.1.5)
367
- archive-tar-minitar (>= 0.5.2)
368
- rubyzip (0.9.9)
369
- sass (3.1.20)
370
- sass-rails (3.2.5)
371
- railties (~> 3.2.0)
372
- sass (>= 3.1.10)
373
- tilt (~> 1.3)
374
- sax-machine (0.0.20)
375
- nokogiri (> 0.0.0)
376
- selenium-webdriver (2.25.0)
377
- childprocess (>= 0.2.5)
378
- libwebsocket (~> 0.1.3)
379
- multi_json (~> 1.0)
380
- rubyzip
381
- shoulda (3.1.1)
382
- shoulda-context (~> 1.0)
383
- shoulda-matchers (~> 1.2)
384
- shoulda-context (1.0.0)
385
- shoulda-matchers (1.2.0)
386
- activesupport (>= 3.0.0)
387
- sinatra (1.3.2)
388
- rack (~> 1.3, >= 1.3.6)
389
- rack-protection (~> 1.2)
107
+ rspec-core (~> 2.13.0)
108
+ rspec-expectations (~> 2.13.0)
109
+ rspec-mocks (~> 2.13.0)
110
+ slim (1.3.9)
111
+ temple (~> 0.6.3)
390
112
  tilt (~> 1.3, >= 1.3.3)
391
- skinny (0.2.1)
392
- eventmachine (~> 0.12)
393
- thin (~> 1.2)
394
- slim (1.2.2)
395
- temple (~> 0.4.0)
396
- tilt (~> 1.3.3)
397
- slim-rails (1.0.3)
398
- actionpack (~> 3.0)
399
- activesupport (~> 3.0)
400
- railties (~> 3.0)
401
- slim (~> 1.0)
402
- spectator-validates_email (0.1.1)
403
- actionpack (>= 3.0.0)
404
- activemodel (>= 3.0.0)
405
- sprockets (2.1.3)
113
+ slim-rails (1.1.1)
114
+ actionpack (>= 3.0, < 4.1)
115
+ activesupport (>= 3.0, < 4.1)
116
+ railties (>= 3.0, < 4.1)
117
+ slim (~> 1.3)
118
+ sprockets (2.2.2)
406
119
  hike (~> 1.2)
120
+ multi_json (~> 1.0)
407
121
  rack (~> 1.0)
408
122
  tilt (~> 1.1, != 1.3.0)
409
- sqlite3 (1.3.6)
410
- steak (1.1.0)
411
- rspec (>= 1.3)
412
- supermodel (0.1.4)
413
- activemodel (>= 3.0.0.beta)
414
- tag_helper (0.0.3)
415
- temple (0.4.0)
416
- thin (1.4.1)
417
- daemons (>= 1.0.9)
418
- eventmachine (>= 0.12.6)
419
- rack (>= 1.0.0)
420
- thor (0.15.4)
421
- tilt (1.3.3)
422
- treetop (1.4.10)
123
+ temple (0.6.5)
124
+ thor (0.18.1)
125
+ tilt (1.4.1)
126
+ treetop (1.4.14)
423
127
  polyglot
424
128
  polyglot (>= 0.3.1)
425
- trollop (1.16.2)
426
- tumblr-api (0.1.4)
427
- activesupport
428
- httparty
429
- tzinfo (0.3.33)
430
- uglifier (1.2.7)
431
- execjs (>= 0.3.0)
432
- multi_json (~> 1.3)
433
- unicode (0.4.2)
434
- vimeo (1.5.3)
435
- httparty (>= 0.4.5)
436
- httpclient (>= 2.1.5.2)
437
- json (>= 1.1.9)
438
- multipart-post (>= 1.0.1)
439
- oauth (>= 0.4.3)
440
- warden (1.2.1)
441
- rack (>= 1.0)
442
- web_translate_it (2.0.4)
443
- json
444
- multipart-post (~> 1.1.3)
445
- trollop (~> 1.16.2)
446
- weekdays (1.0.2)
447
- wirble (0.1.3)
448
- xpath (0.1.4)
449
- nokogiri (~> 1.3)
129
+ tzinfo (0.3.37)
450
130
 
451
131
  PLATFORMS
452
132
  ruby
453
133
 
454
134
  DEPENDENCIES
455
- RedCloth
456
- activeadmin!
457
- activemerchant (= 1.17.0)
458
- activerecord-postgresql-adapter
459
- airbrake
460
- annotate
461
- auto_html (= 1.4.2)
462
- bourbon
463
- brcep
464
- cancan
465
- capybara (>= 1.0.1)
466
- carrierwave (= 0.5.8)
467
- catarse_mailchimp
468
- catarse_moip (~> 0.1.1)
135
+ activemerchant (>= 1.17.0)
469
136
  catarse_paypal_express!
470
- coffee-rails (~> 3.2.2)
471
- compass-960-plugin (~> 0.10.4)
472
- compass-rails (~> 1.0.1)
473
- dalli
474
137
  database_cleaner
475
- devise (= 1.5.3)
476
- draper
477
- enumerate_it
478
- factory_girl_rails (= 1.7.0)
479
- feedzirra
480
- fog
481
- foreigner
482
- formtastic (~> 2.1.1)
483
- has_scope
484
- has_vimeo_video (~> 0.0.5)
485
- http_accept_language
486
- httparty (~> 0.6.1)
487
- httpclient (= 2.2.5)
488
- inherited_resources (= 1.3.1)
489
- jquery-rails
490
- kaminari
491
- launchy
492
- mailcatcher
493
- maxim-sexy_pg_constraints
494
- meta_search (= 1.1.3)
495
- mocha (= 0.10.4)
496
- moip_catarse (~> 1.0.6)
497
- omniauth (~> 1.1.0)
498
- omniauth-facebook (~> 1.2.0)
499
- omniauth-github (~> 1.0.1)
500
- omniauth-linkedin (~> 0.0.6)
501
- omniauth-openid (~> 1.0.1)
502
- omniauth-twitter (~> 0.0.12)
503
- omniauth-yahoo (~> 0.0.4)
504
- on_the_spot
505
- paypal-express
138
+ factory_girl_rails
506
139
  pg
507
- rack-timeout
508
- rails (= 3.2.6)
509
- rails_autolink (~> 1.0.7)
510
- rake (= 0.9.2.2)
511
- rcov (= 0.9.11)
512
- rmagick
513
- routing-filter
514
- rspec-rails (~> 2.10.0)
515
- ruby-debug19
516
- sass-rails (~> 3.2.5)
517
- selenium-webdriver (~> 2.25.0)
518
- shoulda
519
- slim
140
+ rspec-rails
520
141
  slim-rails
521
- spectator-validates_email
522
- steak (~> 1.1.0)
523
- thin
524
- tumblr-api
525
- uglifier (>= 1.0.3)
526
- unicode
527
- validation_reflection!
528
- web_translate_it
529
- weekdays
530
- wirble