spree_paypal_adaptive_payment 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. data/.gitignore +22 -0
  2. data/Gemfile +34 -0
  3. data/MIT-LICENSE.txt +20 -0
  4. data/README.markdown +3 -0
  5. data/Rakefile +14 -0
  6. data/TAGS +64 -0
  7. data/Versionfile +1 -0
  8. data/app/models/billing_integration/paypal_adaptive_payment.rb +25 -0
  9. data/app/models/paypal_adaptive_payment_account.rb +99 -0
  10. data/app/views/admin/payments/source_forms/_paypal_adaptive_payments.html.erb +9 -0
  11. data/app/views/admin/payments/source_views/_paypal_adaptive_payments.html.erb +110 -0
  12. data/app/views/admin/paypal_adaptive_payments/refund.html.erb +15 -0
  13. data/app/views/checkout/_confirm.html.erb +11 -0
  14. data/app/views/checkout/_delivery.html.erb +25 -0
  15. data/app/views/checkout/_payment.html.erb +30 -0
  16. data/app/views/checkout/edit.html.erb +18 -0
  17. data/app/views/checkout/payment/_check.html.erb +0 -0
  18. data/app/views/checkout/payment/_gateway.html.erb +31 -0
  19. data/app/views/checkout/payment/_paypal_adaptive_payment.html.erb +3 -0
  20. data/app/views/checkout/payment/_paypaladaptivepayment.html.erb +3 -0
  21. data/app/views/checkout/registration.html.erb +20 -0
  22. data/app/views/shared/_paypal_adaptive_paymetns_checkout.html.erb +3 -0
  23. data/app/views/shared/paypal_adaptive_payments_confirm.html.erb +10 -0
  24. data/config/locales/en.yml +32 -0
  25. data/config/routes.rb +26 -0
  26. data/db/migrate/20100226133156_create_paypal_adaptive_payment_accounts.rb +15 -0
  27. data/doc/BillingIntegration/PaypalAdaptivePayment.html +263 -0
  28. data/doc/PaypalAdaptivePaymentAccount.html +683 -0
  29. data/doc/SpreePaypalAdaptivePayment/Engine.html +200 -0
  30. data/doc/SpreePaypalAdaptivePayment.html +106 -0
  31. data/doc/SpreePaypalAdaptivePaymentHooks.html +116 -0
  32. data/doc/_index.html +146 -0
  33. data/doc/class_list.html +47 -0
  34. data/doc/css/common.css +1 -0
  35. data/doc/css/full_list.css +53 -0
  36. data/doc/css/style.css +320 -0
  37. data/doc/file.README.html +69 -0
  38. data/doc/file_list.html +49 -0
  39. data/doc/frames.html +13 -0
  40. data/doc/index.html +69 -0
  41. data/doc/js/app.js +205 -0
  42. data/doc/js/full_list.js +150 -0
  43. data/doc/js/jquery.js +16 -0
  44. data/doc/method_list.html +134 -0
  45. data/doc/top-level-namespace.html +105 -0
  46. data/lib/spree_paypal_adaptive_payment.rb +24 -0
  47. data/lib/spree_paypal_adaptive_payment_hooks.rb +3 -0
  48. data/lib/tasks/spree_paypal_adaptive_payment.rake +26 -0
  49. data/public/images/paypal111.gif +0 -0
  50. data/spec/controllers/checkout_controller_spec.rb +278 -0
  51. data/spec/factories/address_factory.rb +13 -0
  52. data/spec/factories/order_factory.rb +11 -0
  53. data/spec/factories/state_factory.rb +5 -0
  54. data/spec/spec_helper.rb +40 -0
  55. data/spree_paypal_adaptive_payment.gemspec +17 -0
  56. metadata +111 -0
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spree_paypal_adaptive_payment
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jose Pablo Barrantes
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-08-24 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: spree_core
16
+ requirement: &14882820 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.40.3
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *14882820
25
+ description:
26
+ email: xjpalobrx@gmail.com
27
+ executables: []
28
+ extensions: []
29
+ extra_rdoc_files: []
30
+ files:
31
+ - .gitignore
32
+ - Gemfile
33
+ - MIT-LICENSE.txt
34
+ - README.markdown
35
+ - Rakefile
36
+ - TAGS
37
+ - Versionfile
38
+ - app/models/billing_integration/paypal_adaptive_payment.rb
39
+ - app/models/paypal_adaptive_payment_account.rb
40
+ - app/views/admin/payments/source_forms/_paypal_adaptive_payments.html.erb
41
+ - app/views/admin/payments/source_views/_paypal_adaptive_payments.html.erb
42
+ - app/views/admin/paypal_adaptive_payments/refund.html.erb
43
+ - app/views/checkout/_confirm.html.erb
44
+ - app/views/checkout/_delivery.html.erb
45
+ - app/views/checkout/_payment.html.erb
46
+ - app/views/checkout/edit.html.erb
47
+ - app/views/checkout/payment/_check.html.erb
48
+ - app/views/checkout/payment/_gateway.html.erb
49
+ - app/views/checkout/payment/_paypal_adaptive_payment.html.erb
50
+ - app/views/checkout/payment/_paypaladaptivepayment.html.erb
51
+ - app/views/checkout/registration.html.erb
52
+ - app/views/shared/_paypal_adaptive_paymetns_checkout.html.erb
53
+ - app/views/shared/paypal_adaptive_payments_confirm.html.erb
54
+ - config/locales/en.yml
55
+ - config/routes.rb
56
+ - db/migrate/20100226133156_create_paypal_adaptive_payment_accounts.rb
57
+ - doc/BillingIntegration/PaypalAdaptivePayment.html
58
+ - doc/PaypalAdaptivePaymentAccount.html
59
+ - doc/SpreePaypalAdaptivePayment.html
60
+ - doc/SpreePaypalAdaptivePayment/Engine.html
61
+ - doc/SpreePaypalAdaptivePaymentHooks.html
62
+ - doc/_index.html
63
+ - doc/class_list.html
64
+ - doc/css/common.css
65
+ - doc/css/full_list.css
66
+ - doc/css/style.css
67
+ - doc/file.README.html
68
+ - doc/file_list.html
69
+ - doc/frames.html
70
+ - doc/index.html
71
+ - doc/js/app.js
72
+ - doc/js/full_list.js
73
+ - doc/js/jquery.js
74
+ - doc/method_list.html
75
+ - doc/top-level-namespace.html
76
+ - lib/spree_paypal_adaptive_payment.rb
77
+ - lib/spree_paypal_adaptive_payment_hooks.rb
78
+ - lib/tasks/spree_paypal_adaptive_payment.rake
79
+ - public/images/paypal111.gif
80
+ - spec/controllers/checkout_controller_spec.rb
81
+ - spec/factories/address_factory.rb
82
+ - spec/factories/order_factory.rb
83
+ - spec/factories/state_factory.rb
84
+ - spec/spec_helper.rb
85
+ - spree_paypal_adaptive_payment.gemspec
86
+ homepage: https://github.com/jpablobr/spree_paypal_adaptive_payment
87
+ licenses: []
88
+ post_install_message:
89
+ rdoc_options: []
90
+ require_paths:
91
+ - lib
92
+ required_ruby_version: !ruby/object:Gem::Requirement
93
+ none: false
94
+ requirements:
95
+ - - ! '>='
96
+ - !ruby/object:Gem::Version
97
+ version: 1.8.7
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.8
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: Add PayPal Adaptive Payments to Spree store
110
+ test_files: []
111
+ has_rdoc: false