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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -4
- data/lib/active_merchant/billing/gateways/paypal_adaptive_accounts.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da3ca3ef02168936d1c8b80da3c48f8e6a92fa72
|
|
4
|
+
data.tar.gz: 39e3c78142986bf277c6110782a4d1fca67eb32b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb6f3b19fc4d172267a17c643fc0b5f3af9bbc3f8a056486da75afdff51e9f2ca2d43d3ae7c9e987b547a500e5defe33be94cc0d52d93b00b9c77688a42cf1a7
|
|
7
|
+
data.tar.gz: c85c082bd3f75dc2f311530fed824e68cad0192517f8d4093eef6f822b4552b0497cabca227493e9c7eb7eb252a4907a0e6e7ae0f0071fded35b55df959a4866
|
data/CHANGELOG.md
CHANGED
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/'
|