catarse_paypal_express 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -6,3 +6,4 @@ test/dummy/log/*.log
6
6
  test/dummy/tmp/
7
7
  test/dummy/.sass-cache
8
8
  test/dummy/
9
+ catarse_paypal_express-0.0.1.gem
data/Gemfile CHANGED
@@ -15,3 +15,111 @@ gem "jquery-rails"
15
15
 
16
16
  # To use debugger
17
17
  # gem 'debugger'
18
+ source 'http://rubygems.org'
19
+ source 'http://gems.github.com'
20
+
21
+ gem 'rails', '3.2.6'
22
+ gem 'rake', '0.9.2.2'
23
+ gem 'catarse_paypal_express', :path => '~/store/code/catarse_paypal_express'
24
+
25
+ # Database [Putting pg to the end because of a weird bug with Lion, pg and openssl]
26
+ gem 'pg'
27
+ gem 'foreigner'
28
+ gem 'activerecord-postgresql-adapter'
29
+
30
+ # Frontend stuff
31
+ gem 'jquery-rails'
32
+ gem 'slim'
33
+ gem 'slim-rails'
34
+
35
+ # Authentication and Authorization
36
+ gem 'omniauth', "~> 1.1.0"
37
+ gem 'omniauth-openid', '~> 1.0.1'
38
+ gem 'omniauth-twitter', '~> 0.0.12'
39
+ gem 'omniauth-facebook', '~> 1.2.0'
40
+ gem 'omniauth-github', '~> 1.0.1'
41
+ gem 'omniauth-linkedin', '~> 0.0.6'
42
+ gem 'omniauth-yahoo', '~> 0.0.4'
43
+ gem 'devise', '1.5.3'
44
+ gem 'cancan'
45
+
46
+ gem 'rails_autolink', '~> 1.0.7'
47
+
48
+ # Tools
49
+ gem 'mailchimp'
50
+ gem "airbrake"
51
+ gem 'feedzirra'
52
+ gem 'formtastic'
53
+ gem "auto_html", '= 1.4.2'
54
+ gem 'validation_reflection', git: 'git://github.com/ncri/validation_reflection.git'
55
+ gem 'maxim-sexy_pg_constraints'
56
+ gem 'inherited_resources', '1.3.1'
57
+ gem 'spectator-validates_email', require: 'validates_email'
58
+ gem 'has_vimeo_video', '>= 0.0.4'
59
+ gem 'wirble'
60
+ gem "on_the_spot"
61
+ gem 'weekdays'
62
+ gem 'brcep'
63
+ gem "RedCloth"
64
+ gem 'unicode'
65
+ gem 'carrierwave', '= 0.5.8'
66
+ gem 'rmagick'
67
+ gem 'fog'
68
+ gem 'enumerate_it'
69
+ gem 'httparty', '~> 0.6.1'
70
+ gem "rack-timeout"
71
+ gem 'kaminari'
72
+ gem 'tumblr-api'
73
+ gem 'dalli'
74
+ gem 'capybara', ">= 1.0.1"
75
+
76
+ # Translations
77
+ gem 'http_accept_language'
78
+ gem 'web_translate_it'
79
+ gem 'routing-filter' #, :git => 'git://github.com/svenfuchs/routing-filter.git'
80
+
81
+ # Administration
82
+ gem 'activeadmin', git: 'git://github.com/gregbell/active_admin.git'
83
+ gem "meta_search", "1.1.3"
84
+
85
+ # Payment (moip)
86
+ gem 'moip', git: 'https://github.com/danielweinmann/moip-ruby.git', ref: 'db1b879358c623b597dc1c221b53336f9f06db0e'
87
+
88
+ # Payment (paypal adaptive)
89
+ gem 'activemerchant', '1.17.0', require: 'active_merchant'
90
+ #gem 'active_paypal_adaptive_payment', '~> 0.3.13'
91
+ gem 'httpclient', '2.2.5'
92
+ gem 'selenium-webdriver', '~> 2.25.0'
93
+ gem 'bourbon'
94
+ gem 'paypal-express', :require => 'paypal'
95
+
96
+ # Server
97
+ gem 'thin'
98
+
99
+ group :assets do
100
+ gem 'sass-rails', '~> 3.2.5'
101
+ gem 'coffee-rails', '~> 3.2.2'
102
+ gem "compass-rails", "~> 1.0.1"
103
+ gem 'uglifier', '>= 1.0.3'
104
+ gem 'compass-960-plugin', '~> 0.10.4'
105
+ end
106
+
107
+ group :test, :development do
108
+ gem 'annotate'
109
+ gem 'launchy'
110
+ gem 'database_cleaner'
111
+ gem 'steak', "~> 1.1.0"
112
+ gem 'rspec-rails', "~> 2.10.0"
113
+ gem 'rcov', '= 0.9.11'
114
+ gem 'mocha', '0.10.4'
115
+ end
116
+
117
+ group :development do
118
+ gem 'mailcatcher'
119
+ gem 'ruby-debug19'
120
+ end
121
+
122
+ group :test do
123
+ gem 'shoulda'
124
+ gem 'factory_girl_rails', '1.7.0'
125
+ end
data/Gemfile.lock CHANGED
@@ -1,3 +1,36 @@
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
+ GIT
25
+ remote: https://github.com/danielweinmann/moip-ruby.git
26
+ revision: db1b879358c623b597dc1c221b53336f9f06db0e
27
+ ref: db1b879358c623b597dc1c221b53336f9f06db0e
28
+ specs:
29
+ moip (1.0.2)
30
+ activesupport (>= 2.3.2)
31
+ httparty (~> 0.6.1)
32
+ nokogiri (~> 1.4.3)
33
+
1
34
  PATH
2
35
  remote: .
3
36
  specs:
@@ -7,7 +40,10 @@ PATH
7
40
 
8
41
  GEM
9
42
  remote: http://rubygems.org/
43
+ remote: http://rubygems.org/
44
+ remote: http://gems.github.com/
10
45
  specs:
46
+ RedCloth (4.2.9)
11
47
  actionmailer (3.2.6)
12
48
  actionpack (= 3.2.6)
13
49
  mail (~> 2.4.4)
@@ -34,45 +70,241 @@ GEM
34
70
  activesupport (= 3.2.6)
35
71
  arel (~> 3.0.2)
36
72
  tzinfo (~> 0.3.29)
73
+ activerecord-postgresql-adapter (0.0.1)
74
+ pg
37
75
  activeresource (3.2.6)
38
76
  activemodel (= 3.2.6)
39
77
  activesupport (= 3.2.6)
40
78
  activesupport (3.2.6)
41
79
  i18n (~> 0.6)
42
80
  multi_json (~> 1.0)
81
+ addressable (2.3.2)
82
+ airbrake (3.1.2)
83
+ activesupport
84
+ builder
85
+ annotate (2.5.0)
86
+ rake
87
+ arbre (1.0.0.rc4)
88
+ activesupport (>= 3.0.0)
89
+ archive-tar-minitar (0.5.2)
43
90
  arel (3.0.2)
91
+ attr_required (0.0.5)
92
+ auto_html (1.4.2)
93
+ RedCloth
94
+ redcarpet
95
+ rinku
96
+ tag_helper
97
+ bcrypt-ruby (3.0.1)
98
+ bourbon (2.1.1)
99
+ sass (>= 3.1)
44
100
  braintree (2.16.0)
45
101
  builder (>= 2.0.0)
102
+ brcep (3.1.0)
46
103
  builder (3.0.0)
104
+ cancan (1.6.8)
105
+ capybara (1.1.2)
106
+ mime-types (>= 1.16)
107
+ nokogiri (>= 1.3.3)
108
+ rack (>= 1.0.0)
109
+ rack-test (>= 0.5.4)
110
+ selenium-webdriver (~> 2.0)
111
+ xpath (~> 0.1.4)
112
+ carrierwave (0.5.8)
113
+ activesupport (~> 3.0)
114
+ childprocess (0.3.5)
115
+ ffi (~> 1.0, >= 1.0.6)
116
+ chunky_png (1.2.6)
117
+ coffee-rails (3.2.2)
118
+ coffee-script (>= 2.2.0)
119
+ railties (~> 3.2.0)
120
+ coffee-script (2.2.0)
121
+ coffee-script-source
122
+ execjs
123
+ coffee-script-source (1.3.3)
124
+ columnize (0.3.6)
125
+ compass (0.12.2)
126
+ chunky_png (~> 1.2)
127
+ fssm (>= 0.2.7)
128
+ sass (~> 3.1)
129
+ compass-960-plugin (0.10.4)
130
+ compass (>= 0.10.0)
131
+ compass-rails (1.0.3)
132
+ compass (>= 0.12.2, < 0.14)
133
+ crack (0.1.8)
134
+ curb (0.7.18)
135
+ daemons (1.1.8)
136
+ dalli (2.1.0)
47
137
  database_cleaner (0.8.0)
138
+ devise (1.5.3)
139
+ bcrypt-ruby (~> 3.0)
140
+ orm_adapter (~> 0.0.3)
141
+ warden (~> 1.1)
48
142
  diff-lcs (1.1.3)
49
- erubis (2.7.0)
50
- factory_girl (3.5.0)
143
+ enumerate_it (0.7.16)
51
144
  activesupport (>= 3.0.0)
52
- factory_girl_rails (3.5.0)
53
- factory_girl (~> 3.5.0)
145
+ erubis (2.7.0)
146
+ eventmachine (0.12.10)
147
+ excon (0.6.6)
148
+ execjs (1.4.0)
149
+ multi_json (~> 1.0)
150
+ factory_girl (2.6.4)
151
+ activesupport (>= 2.3.9)
152
+ factory_girl_rails (1.7.0)
153
+ factory_girl (~> 2.6.0)
54
154
  railties (>= 3.0.0)
155
+ faraday (0.8.1)
156
+ multipart-post (~> 1.1)
157
+ fastercsv (1.5.5)
158
+ feedzirra (0.0.31)
159
+ activesupport (>= 3.0.8)
160
+ builder (~> 3.0.0)
161
+ curb (~> 0.7.15)
162
+ i18n (>= 0.5.0)
163
+ loofah (~> 1.0.0)
164
+ nokogiri (~> 1.4.4)
165
+ rake (>= 0.9.2)
166
+ rdoc (~> 3.8)
167
+ sax-machine (~> 0.0.20)
168
+ ffi (1.1.4)
169
+ fog (0.9.0)
170
+ builder
171
+ excon (~> 0.6.1)
172
+ formatador (>= 0.1.3)
173
+ json
174
+ mime-types
175
+ net-scp (>= 1.0.4)
176
+ net-ssh (>= 2.1.4)
177
+ nokogiri (>= 1.4.4)
178
+ ruby-hmac
179
+ foreigner (1.2.0)
180
+ activerecord (>= 3.0.0)
181
+ formatador (0.2.3)
182
+ formtastic (2.2.1)
183
+ actionpack (>= 3.0)
184
+ fssm (0.2.9)
185
+ haml (3.1.6)
186
+ has_scope (0.5.1)
187
+ has_vimeo_video (0.0.5)
188
+ supermodel
189
+ vimeo
190
+ hashie (1.2.0)
55
191
  hike (1.2.1)
192
+ http_accept_language (1.0.2)
193
+ httparty (0.6.1)
194
+ crack (= 0.1.8)
195
+ httpauth (0.1)
196
+ httpclient (2.2.5)
56
197
  i18n (0.6.0)
198
+ inherited_resources (1.3.1)
199
+ has_scope (~> 0.5.0)
200
+ responders (~> 0.6)
57
201
  journey (1.0.4)
58
202
  jquery-rails (2.0.2)
59
203
  railties (>= 3.2.0, < 5.0)
60
204
  thor (~> 0.14)
61
205
  json (1.7.3)
206
+ json_pure (1.7.4)
207
+ jwt (0.1.5)
208
+ multi_json (>= 1.0)
209
+ kaminari (0.13.0)
210
+ actionpack (>= 3.0.0)
211
+ activesupport (>= 3.0.0)
212
+ railties (>= 3.0.0)
213
+ launchy (2.1.2)
214
+ addressable (~> 2.3)
215
+ libwebsocket (0.1.5)
216
+ addressable
217
+ linecache19 (0.5.12)
218
+ ruby_core_source (>= 0.1.4)
219
+ loofah (1.0.0)
220
+ nokogiri (>= 1.3.3)
62
221
  mail (2.4.4)
63
222
  i18n (>= 0.4.0)
64
223
  mime-types (~> 1.16)
65
224
  treetop (~> 1.4.8)
225
+ mailcatcher (0.5.8)
226
+ activesupport (~> 3.0)
227
+ eventmachine (~> 0.12)
228
+ haml (~> 3.1)
229
+ mail (~> 2.3)
230
+ sinatra (~> 1.2)
231
+ skinny (~> 0.2, >= 0.2.1)
232
+ sqlite3 (~> 1.3)
233
+ thin (~> 1.2)
234
+ mailchimp (0.0.7.alpha)
235
+ httparty
236
+ maxim-sexy_pg_constraints (0.1.3)
237
+ meta_search (1.1.3)
238
+ actionpack (~> 3.1)
239
+ activerecord (~> 3.1)
240
+ activesupport (~> 3.1)
241
+ polyamorous (~> 0.5.0)
242
+ metaclass (0.0.1)
66
243
  mime-types (1.19)
244
+ mocha (0.10.4)
245
+ metaclass (~> 0.0.1)
67
246
  multi_json (1.3.6)
247
+ multipart-post (1.1.5)
248
+ net-scp (1.0.4)
249
+ net-ssh (>= 1.99.1)
250
+ net-ssh (2.5.2)
251
+ nokogiri (1.4.7)
252
+ oauth (0.4.6)
253
+ oauth2 (0.8.0)
254
+ faraday (~> 0.8)
255
+ httpauth (~> 0.1)
256
+ jwt (~> 0.1.4)
257
+ multi_json (~> 1.0)
258
+ rack (~> 1.2)
259
+ omniauth (1.1.0)
260
+ hashie (~> 1.2)
261
+ rack
262
+ omniauth-facebook (1.2.0)
263
+ omniauth-oauth2 (~> 1.0.0)
264
+ omniauth-github (1.0.1)
265
+ omniauth (~> 1.0)
266
+ omniauth-oauth2 (~> 1.0)
267
+ omniauth-linkedin (0.0.6)
268
+ omniauth-oauth (~> 1.0.0)
269
+ omniauth-oauth (1.0.1)
270
+ oauth
271
+ omniauth (~> 1.0)
272
+ omniauth-oauth2 (1.0.3)
273
+ oauth2 (~> 0.8.0)
274
+ omniauth (~> 1.0)
275
+ omniauth-openid (1.0.1)
276
+ omniauth (~> 1.0)
277
+ rack-openid (~> 1.3.1)
278
+ omniauth-twitter (0.0.12)
279
+ multi_json (~> 1.3)
280
+ omniauth-oauth (~> 1.0)
281
+ omniauth-yahoo (0.0.4)
282
+ omniauth-oauth (~> 1.0)
283
+ on_the_spot (1.0.1)
284
+ json_pure (>= 1.4.6)
285
+ orm_adapter (0.0.7)
286
+ paypal-express (0.5.0)
287
+ activesupport (>= 2.3)
288
+ attr_required (>= 0.0.5)
289
+ i18n
290
+ restclient_with_cert
291
+ pg (0.14.0)
292
+ polyamorous (0.5.0)
293
+ activerecord (~> 3.0)
68
294
  polyglot (0.3.3)
69
295
  rack (1.4.1)
70
296
  rack-cache (1.2)
71
297
  rack (>= 0.4)
298
+ rack-openid (1.3.1)
299
+ rack (>= 1.1.0)
300
+ ruby-openid (>= 2.1.8)
301
+ rack-protection (1.2.0)
302
+ rack
72
303
  rack-ssl (1.3.2)
73
304
  rack
74
305
  rack-test (0.6.1)
75
306
  rack (>= 1.0)
307
+ rack-timeout (0.0.3)
76
308
  rails (3.2.6)
77
309
  actionmailer (= 3.2.6)
78
310
  actionpack (= 3.2.6)
@@ -81,6 +313,8 @@ GEM
81
313
  activesupport (= 3.2.6)
82
314
  bundler (~> 1.0)
83
315
  railties (= 3.2.6)
316
+ rails_autolink (1.0.9)
317
+ rails (~> 3.1)
84
318
  railties (3.2.6)
85
319
  actionpack (= 3.2.6)
86
320
  activesupport (= 3.2.6)
@@ -89,38 +323,202 @@ GEM
89
323
  rdoc (~> 3.4)
90
324
  thor (>= 0.14.6, < 2.0)
91
325
  rake (0.9.2.2)
326
+ rcov (0.9.11)
92
327
  rdoc (3.12)
93
328
  json (~> 1.4)
94
- rspec (2.11.0)
95
- rspec-core (~> 2.11.0)
96
- rspec-expectations (~> 2.11.0)
97
- rspec-mocks (~> 2.11.0)
98
- rspec-core (2.11.1)
99
- rspec-expectations (2.11.1)
329
+ redcarpet (2.1.1)
330
+ responders (0.9.2)
331
+ railties (~> 3.1)
332
+ rest-client (1.6.7)
333
+ mime-types (>= 1.16)
334
+ restclient_with_cert (0.0.8)
335
+ rest-client (>= 1.6)
336
+ rinku (1.7.0)
337
+ rmagick (2.13.1)
338
+ routing-filter (0.3.1)
339
+ actionpack
340
+ rspec (2.10.0)
341
+ rspec-core (~> 2.10.0)
342
+ rspec-expectations (~> 2.10.0)
343
+ rspec-mocks (~> 2.10.0)
344
+ rspec-core (2.10.1)
345
+ rspec-expectations (2.10.0)
100
346
  diff-lcs (~> 1.1.3)
101
- rspec-mocks (2.11.1)
102
- rspec-rails (2.11.0)
347
+ rspec-mocks (2.10.1)
348
+ rspec-rails (2.10.1)
103
349
  actionpack (>= 3.0)
104
350
  activesupport (>= 3.0)
105
351
  railties (>= 3.0)
106
- rspec (~> 2.11.0)
352
+ rspec (~> 2.10.0)
353
+ ruby-debug-base19 (0.11.25)
354
+ columnize (>= 0.3.1)
355
+ linecache19 (>= 0.5.11)
356
+ ruby_core_source (>= 0.1.4)
357
+ ruby-debug19 (0.11.6)
358
+ columnize (>= 0.3.1)
359
+ linecache19 (>= 0.5.11)
360
+ ruby-debug-base19 (>= 0.11.19)
361
+ ruby-hmac (0.4.0)
362
+ ruby-openid (2.2.0)
363
+ ruby_core_source (0.1.5)
364
+ archive-tar-minitar (>= 0.5.2)
365
+ rubyzip (0.9.9)
366
+ sass (3.1.20)
367
+ sass-rails (3.2.5)
368
+ railties (~> 3.2.0)
369
+ sass (>= 3.1.10)
370
+ tilt (~> 1.3)
371
+ sax-machine (0.0.20)
372
+ nokogiri (> 0.0.0)
373
+ selenium-webdriver (2.25.0)
374
+ childprocess (>= 0.2.5)
375
+ libwebsocket (~> 0.1.3)
376
+ multi_json (~> 1.0)
377
+ rubyzip
378
+ shoulda (3.1.1)
379
+ shoulda-context (~> 1.0)
380
+ shoulda-matchers (~> 1.2)
381
+ shoulda-context (1.0.0)
382
+ shoulda-matchers (1.2.0)
383
+ activesupport (>= 3.0.0)
384
+ sinatra (1.3.2)
385
+ rack (~> 1.3, >= 1.3.6)
386
+ rack-protection (~> 1.2)
387
+ tilt (~> 1.3, >= 1.3.3)
388
+ skinny (0.2.1)
389
+ eventmachine (~> 0.12)
390
+ thin (~> 1.2)
391
+ slim (1.2.2)
392
+ temple (~> 0.4.0)
393
+ tilt (~> 1.3.3)
394
+ slim-rails (1.0.3)
395
+ actionpack (~> 3.0)
396
+ activesupport (~> 3.0)
397
+ railties (~> 3.0)
398
+ slim (~> 1.0)
399
+ spectator-validates_email (0.1.1)
400
+ actionpack (>= 3.0.0)
401
+ activemodel (>= 3.0.0)
107
402
  sprockets (2.1.3)
108
403
  hike (~> 1.2)
109
404
  rack (~> 1.0)
110
405
  tilt (~> 1.1, != 1.3.0)
406
+ sqlite3 (1.3.6)
407
+ steak (1.1.0)
408
+ rspec (>= 1.3)
409
+ supermodel (0.1.4)
410
+ activemodel (>= 3.0.0.beta)
411
+ tag_helper (0.0.3)
412
+ temple (0.4.0)
413
+ thin (1.4.1)
414
+ daemons (>= 1.0.9)
415
+ eventmachine (>= 0.12.6)
416
+ rack (>= 1.0.0)
111
417
  thor (0.15.4)
112
418
  tilt (1.3.3)
113
419
  treetop (1.4.10)
114
420
  polyglot
115
421
  polyglot (>= 0.3.1)
422
+ trollop (1.16.2)
423
+ tumblr-api (0.1.4)
424
+ activesupport
425
+ httparty
116
426
  tzinfo (0.3.33)
427
+ uglifier (1.2.7)
428
+ execjs (>= 0.3.0)
429
+ multi_json (~> 1.3)
430
+ unicode (0.4.2)
431
+ vimeo (1.5.3)
432
+ httparty (>= 0.4.5)
433
+ httpclient (>= 2.1.5.2)
434
+ json (>= 1.1.9)
435
+ multipart-post (>= 1.0.1)
436
+ oauth (>= 0.4.3)
437
+ warden (1.2.1)
438
+ rack (>= 1.0)
439
+ web_translate_it (2.0.4)
440
+ json
441
+ multipart-post (~> 1.1.3)
442
+ trollop (~> 1.16.2)
443
+ weekdays (1.0.2)
444
+ wirble (0.1.3)
445
+ xpath (0.1.4)
446
+ nokogiri (~> 1.3)
117
447
 
118
448
  PLATFORMS
119
449
  ruby
120
450
 
121
451
  DEPENDENCIES
452
+ RedCloth
453
+ activeadmin!
454
+ activemerchant (= 1.17.0)
455
+ activerecord-postgresql-adapter
456
+ airbrake
457
+ annotate
458
+ auto_html (= 1.4.2)
459
+ bourbon
460
+ brcep
461
+ cancan
462
+ capybara (>= 1.0.1)
463
+ carrierwave (= 0.5.8)
122
464
  catarse_paypal_express!
465
+ coffee-rails (~> 3.2.2)
466
+ compass-960-plugin (~> 0.10.4)
467
+ compass-rails (~> 1.0.1)
468
+ dalli
123
469
  database_cleaner
124
- factory_girl_rails
470
+ devise (= 1.5.3)
471
+ enumerate_it
472
+ factory_girl_rails (= 1.7.0)
473
+ feedzirra
474
+ fog
475
+ foreigner
476
+ formtastic
477
+ has_vimeo_video (>= 0.0.4)
478
+ http_accept_language
479
+ httparty (~> 0.6.1)
480
+ httpclient (= 2.2.5)
481
+ inherited_resources (= 1.3.1)
125
482
  jquery-rails
126
- rspec-rails
483
+ kaminari
484
+ launchy
485
+ mailcatcher
486
+ mailchimp
487
+ maxim-sexy_pg_constraints
488
+ meta_search (= 1.1.3)
489
+ mocha (= 0.10.4)
490
+ moip!
491
+ omniauth (~> 1.1.0)
492
+ omniauth-facebook (~> 1.2.0)
493
+ omniauth-github (~> 1.0.1)
494
+ omniauth-linkedin (~> 0.0.6)
495
+ omniauth-openid (~> 1.0.1)
496
+ omniauth-twitter (~> 0.0.12)
497
+ omniauth-yahoo (~> 0.0.4)
498
+ on_the_spot
499
+ paypal-express
500
+ pg
501
+ rack-timeout
502
+ rails (= 3.2.6)
503
+ rails_autolink (~> 1.0.7)
504
+ rake (= 0.9.2.2)
505
+ rcov (= 0.9.11)
506
+ rmagick
507
+ routing-filter
508
+ rspec-rails (~> 2.10.0)
509
+ ruby-debug19
510
+ sass-rails (~> 3.2.5)
511
+ selenium-webdriver (~> 2.25.0)
512
+ shoulda
513
+ slim
514
+ slim-rails
515
+ spectator-validates_email
516
+ steak (~> 1.1.0)
517
+ thin
518
+ tumblr-api
519
+ uglifier (>= 1.0.3)
520
+ unicode
521
+ validation_reflection!
522
+ web_translate_it
523
+ weekdays
524
+ wirble
@@ -0,0 +1,8 @@
1
+ en:
2
+ projects:
3
+ backers:
4
+ checkout:
5
+ paypal_cancel: "Your PayPal payment was canceled. Please try again."
6
+ paypal_description: "Back project"
7
+ paypal_error: "Ooops. There was an error while sending your payment to PayPal. Please try again."
8
+ success: "Your back was successfully made. Thanks a lot!"
@@ -0,0 +1,8 @@
1
+ pt:
2
+ projects:
3
+ backers:
4
+ checkout:
5
+ paypal_cancel: "Seu pagamento no PayPal foi cancelado. Por favor, tente novamente."
6
+ paypal_description: "Apoio para o projeto %{project_name} no valor de %{value}"
7
+ paypal_error: "Ooops. Ocorreu um erro ao enviar seu pagamento para o PayPal. Por favor, tente novamente."
8
+ success: "Seu apoio foi realizado com sucesso. Muito obrigado!"
@@ -1,3 +1,3 @@
1
1
  module CatarsePaypalExpress
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: catarse_paypal_express
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-24 00:00:00.000000000 Z
12
+ date: 2012-08-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -107,6 +107,8 @@ files:
107
107
  - app/controllers/.gitkeep
108
108
  - app/controllers/catarse_paypal_express/payment/paypal_express_controller.rb
109
109
  - catarse_paypal_express.gemspec
110
+ - config/locales/en.yml
111
+ - config/locales/pt.yml
110
112
  - config/routes.rb
111
113
  - lib/catarse_paypal_express.rb
112
114
  - lib/catarse_paypal_express/engine.rb