active_paypal_adaptive_accounts 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 21a8d3353c895bd60dca6db877849f73d91696a0
4
- data.tar.gz: ff9b650c06e242d8864e955c37692e4ff2fee5f9
3
+ metadata.gz: da3ca3ef02168936d1c8b80da3c48f8e6a92fa72
4
+ data.tar.gz: 39e3c78142986bf277c6110782a4d1fca67eb32b
5
5
  SHA512:
6
- metadata.gz: d2eeeed6ae060477636442e7d745b01448f2e49a9620e52f4bd27d35d1917545710721f3830a1440941f4726b815e05a9b1aa5e55de57e1942c7b8efeda3d13f
7
- data.tar.gz: 30c37eab547f0df3c7f010ada7189b421faf5c855aae85ae6e47cb3a38d698730a6447b26e61502b2d00a1cac58032977d0755289b4699bf76c3691d7631e0da
6
+ metadata.gz: bb6f3b19fc4d172267a17c643fc0b5f3af9bbc3f8a056486da75afdff51e9f2ca2d43d3ae7c9e987b547a500e5defe33be94cc0d52d93b00b9c77688a42cf1a7
7
+ data.tar.gz: c85c082bd3f75dc2f311530fed824e68cad0192517f8d4093eef6f822b4552b0497cabca227493e9c7eb7eb252a4907a0e6e7ae0f0071fded35b55df959a4866
@@ -1,3 +1,7 @@
1
+ ## 0.0.2 (2013-06-01)
2
+
3
+ - Fixed Live URL.
4
+
1
5
  ## 0.0.1 (2013-06-01)
2
6
 
3
7
  - Initial Release.
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Active PayPal Adaptive Accounts
2
2
 
3
3
  This library is meant to interface with PayPal's Adaptive Payment Gateway.
4
+ It enables the API check for the verified status of a paypal account.
4
5
 
5
6
  [Active Merchant]:http://www.activemerchant.org
6
7
 
@@ -40,10 +41,6 @@ Add the following line to your app's Gemfile:
40
41
  )
41
42
  ```
42
43
 
43
- See the implementation of ActiveMerchant::Billing::PaypalAdaptivePayment#build_adaptive_set_payment_options_request
44
- for all available options and [Operation SetPaymentOptions API](https://cms.paypal.com/cms_content/US/en_US/files/developer/PP_AdaptivePayments.pdf)
45
- for a description of them.
46
-
47
44
  ## Testing
48
45
 
49
46
  First modify the `test/fixtures.yml` to fit your app credentials (You
@@ -9,7 +9,7 @@ module ActiveMerchant
9
9
 
10
10
  class PaypalAdaptiveAccounts < Gateway
11
11
  TEST_URL = 'https://svcs.sandbox.paypal.com/AdaptiveAccounts/'
12
- LIVE_URL = 'https://svcs.paypal.com/AdaptiveAccounts'
12
+ LIVE_URL = 'https://svcs.paypal.com/AdaptiveAccounts/'
13
13
 
14
14
  self.supported_countries = ['US']
15
15
  self.homepage_url = 'http://x.com/'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_paypal_adaptive_accounts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Lancar