active_paypal_adaptive_payment 0.2.1 → 0.2.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.
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/{readme.md → README.md}
    RENAMED
    
    | 
         @@ -1,17 +1,18 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Active PayPal Adaptive Payment
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
            This library is meant to interface with PayPal  
     | 
| 
      
 3 
     | 
    
         
            +
            This library is meant to interface with PayPal's Adaptive Payment Gateway.
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            [Active Merchant]:http://www.activemerchant.org
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
     | 
    
         
            -
            [ 
     | 
| 
      
 7 
     | 
    
         
            +
            
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
       8 
9 
     | 
    
         
             
            ## Supported
         
     | 
| 
       9 
10 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
            *  
     | 
| 
       11 
     | 
    
         
            -
            *  
     | 
| 
       12 
     | 
    
         
            -
            *  
     | 
| 
       13 
     | 
    
         
            -
            *  
     | 
| 
       14 
     | 
    
         
            -
            *  
     | 
| 
      
 11 
     | 
    
         
            +
            * Payments
         
     | 
| 
      
 12 
     | 
    
         
            +
            * Peapprovals
         
     | 
| 
      
 13 
     | 
    
         
            +
            * Refunds
         
     | 
| 
      
 14 
     | 
    
         
            +
            * Currency conversions
         
     | 
| 
      
 15 
     | 
    
         
            +
            * More soon!
         
     | 
| 
       15 
16 
     | 
    
         | 
| 
       16 
17 
     | 
    
         
             
            ## Installation
         
     | 
| 
       17 
18 
     | 
    
         | 
| 
         @@ -19,9 +20,11 @@ Add the following line to your app Gemfile: 
     | 
|
| 
       19 
20 
     | 
    
         | 
| 
       20 
21 
     | 
    
         
             
                gem "active_paypal_adaptive_payment"
         
     | 
| 
       21 
22 
     | 
    
         | 
| 
      
 23 
     | 
    
         
            +
                bundle install
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
       22 
25 
     | 
    
         
             
            ## Implementation
         
     | 
| 
       23 
26 
     | 
    
         | 
| 
       24 
     | 
    
         
            -
            See  
     | 
| 
      
 27 
     | 
    
         
            +
            See [iAuction: An Adaptive Payments Tutorial Featuring Parallel Payments](https://www.x.com/docs/DOC-2505) tutorial for more info.
         
     | 
| 
       25 
28 
     | 
    
         | 
| 
       26 
29 
     | 
    
         
             
            ### Pre-approved paymen
         
     | 
| 
       27 
30 
     | 
    
         | 
| 
         @@ -38,7 +41,7 @@ See 
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
      
 3 
     | 
    
         
            +
            %w{
         
     | 
| 
      
 4 
     | 
    
         
            +
            '/paypal_adaptive_payments/exceptions.rb'
         
     | 
| 
      
 5 
     | 
    
         
            +
            '/paypal_adaptive_payments/adaptive_payment_response.rb'
         
     | 
| 
      
 6 
     | 
    
         
            +
            '/paypal_adaptive_payments/ext.rb'
         
     | 
| 
      
 7 
     | 
    
         
            +
            }.each { |f| require File.join(dir, f) }
         
     | 
| 
       7 
8 
     | 
    
         | 
| 
       8 
9 
     | 
    
         
             
            require 'money'
         
     | 
| 
       9 
10 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: active_paypal_adaptive_payment
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.2
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: 
         
     | 
| 
       6 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       7 
7 
     | 
    
         
             
            authors:
         
     | 
| 
         @@ -9,11 +9,11 @@ authors: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       10 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       11 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       12 
     | 
    
         
            -
            date: 2011-08- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2011-08-13 00:00:00.000000000Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: activemerchant
         
     | 
| 
       16 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 16 
     | 
    
         
            +
              requirement: &22834000 !ruby/object:Gem::Requirement
         
     | 
| 
       17 
17 
     | 
    
         
             
                none: false
         
     | 
| 
       18 
18 
     | 
    
         
             
                requirements:
         
     | 
| 
       19 
19 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -21,10 +21,10 @@ dependencies: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                    version: 1.5.1
         
     | 
| 
       22 
22 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       23 
23 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       24 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 24 
     | 
    
         
            +
              version_requirements: *22834000
         
     | 
| 
       25 
25 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       26 
26 
     | 
    
         
             
              name: multi_json
         
     | 
| 
       27 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 27 
     | 
    
         
            +
              requirement: &22833520 !ruby/object:Gem::Requirement
         
     | 
| 
       28 
28 
     | 
    
         
             
                none: false
         
     | 
| 
       29 
29 
     | 
    
         
             
                requirements:
         
     | 
| 
       30 
30 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -32,10 +32,10 @@ dependencies: 
     | 
|
| 
       32 
32 
     | 
    
         
             
                    version: 1.0.0
         
     | 
| 
       33 
33 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       34 
34 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       35 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 35 
     | 
    
         
            +
              version_requirements: *22833520
         
     | 
| 
       36 
36 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       37 
37 
     | 
    
         
             
              name: rash
         
     | 
| 
       38 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 38 
     | 
    
         
            +
              requirement: &22789140 !ruby/object:Gem::Requirement
         
     | 
| 
       39 
39 
     | 
    
         
             
                none: false
         
     | 
| 
       40 
40 
     | 
    
         
             
                requirements:
         
     | 
| 
       41 
41 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -43,10 +43,10 @@ dependencies: 
     | 
|
| 
       43 
43 
     | 
    
         
             
                    version: 0.3.0
         
     | 
| 
       44 
44 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       45 
45 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       46 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 46 
     | 
    
         
            +
              version_requirements: *22789140
         
     | 
| 
       47 
47 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       48 
48 
     | 
    
         
             
              name: money
         
     | 
| 
       49 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 49 
     | 
    
         
            +
              requirement: &22788620 !ruby/object:Gem::Requirement
         
     | 
| 
       50 
50 
     | 
    
         
             
                none: false
         
     | 
| 
       51 
51 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
52 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -54,9 +54,11 @@ dependencies: 
     | 
|
| 
       54 
54 
     | 
    
         
             
                    version: 3.6.0
         
     | 
| 
       55 
55 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       56 
56 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       57 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
       58 
     | 
    
         
            -
            description: This library is meant to interface with PayPal  
     | 
| 
       59 
     | 
    
         
            -
               
     | 
| 
      
 57 
     | 
    
         
            +
              version_requirements: *22788620
         
     | 
| 
      
 58 
     | 
    
         
            +
            description: ! '    This library is meant to interface with PayPal''s Adaptive Payment
         
     | 
| 
      
 59 
     | 
    
         
            +
              Gateway.
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            '
         
     | 
| 
       60 
62 
     | 
    
         
             
            email:
         
     | 
| 
       61 
63 
     | 
    
         
             
            - xjpablobrx@gmail.com
         
     | 
| 
       62 
64 
     | 
    
         
             
            executables: []
         
     | 
| 
         @@ -69,7 +71,7 @@ files: 
     | 
|
| 
       69 
71 
     | 
    
         
             
            - lib/active_merchant/billing/gateways/paypal_adaptive_payments/ext.rb
         
     | 
| 
       70 
72 
     | 
    
         
             
            - lib/active_merchant/billing/gateways/paypal_adaptive_payment.rb
         
     | 
| 
       71 
73 
     | 
    
         
             
            - MIT-LICENSE
         
     | 
| 
       72 
     | 
    
         
            -
            -  
     | 
| 
      
 74 
     | 
    
         
            +
            - README.md
         
     | 
| 
       73 
75 
     | 
    
         
             
            - CHANGELOG.md
         
     | 
| 
       74 
76 
     | 
    
         
             
            homepage: http://github.com/jpablobr/active_paypal_adaptive_payment
         
     | 
| 
       75 
77 
     | 
    
         
             
            licenses: []
         
     |