paypal-sdk-merchant 1.117.1 → 1.117.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 102eae78dfad06334acb3a8fc9f869cf908428da
4
- data.tar.gz: 0b543048c8bbac3c11d408c90571c0d6e66fd244
2
+ SHA256:
3
+ metadata.gz: 4cf51925b858141e8de8f423842fabbf09d2a9ea369119669c6cf7f12bf73d45
4
+ data.tar.gz: 3f04e0f59bfdc722e849f977db0cf39a7be22090b772b2666f0fbc37c25624ef
5
5
  SHA512:
6
- metadata.gz: afb76e26cb5ba738d17b09f63cc050a7dff47a67f6dc28866b0cd9e3dbcce73b234cdc2d0dc7187440d01dde9d74a77a94858fd3a7c58e19fb5e28a2201cf608
7
- data.tar.gz: aa51601a96994a0f0fde2bd334ecbfa2dc094e296d7d5747a1b9f5e986fbdd7b1ac86e0b4c7f51b44e531f494c7f80b414fea9a26159846cff38d61550f87c68
6
+ metadata.gz: 4852e75f1de50d8dc764f903e7153d95ee8c648f965607d3704f4e4f35692f206f772ee5fd9b35ec02fc05a8d3ef30d3c7cf99666df61747d5e5e4a80ee14229
7
+ data.tar.gz: d3e3716344c6568d976f0eb29c65c72e5b3630eab8c5b9129e3af58f8628548bf36e92a46ba4a09612f37f7ea370cd93b616c87cb5aa0d6326716753aa57138a
data/Gemfile CHANGED
@@ -17,6 +17,6 @@ group :test do
17
17
  end
18
18
 
19
19
  platform :mri_18 do
20
- gem 'nokogiri', '~> 1.5.9'
21
- gem 'rubyzip', '~> 0.9.9'
20
+ gem 'nokogiri', '~> 1.8.1'
21
+ gem 'rubyzip', '~> 1.2.1'
22
22
  end
data/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Merchant
2
2
 
3
- #### This Classic SDK is not actively supported and will be deprecated in the future. For full support on new integrations, please use the [Ruby Rest SDK](https://github.com/paypal/rest-api-sdk-ruby)
4
-
5
3
  The PayPal Merchant SDK provides Ruby APIs for processing payments, recurring payments, subscriptions and transactions using PayPal's Merchant APIs, which include Express Checkout, Recurring Payments, Direct Payment and Transactional APIs.
6
4
 
5
+ ## Support
6
+
7
+ > Please contact [PayPal Technical Support](https://developer.paypal.com/support/) for any live or account issues.
8
+
7
9
  ## Installation
8
10
 
9
11
  Add this line to your application's Gemfile:
@@ -26,6 +28,8 @@ $ gem install paypal-sdk-merchant
26
28
 
27
29
  ## Configuration
28
30
 
31
+ **Please note Rails 4+ is not supported due to [backward compatibility concern](https://github.com/paypal/merchant-sdk-ruby/pull/16#issuecomment-54171388).**
32
+
29
33
  For Rails application:
30
34
 
31
35
  ```sh
@@ -102,8 +106,6 @@ else
102
106
  end
103
107
  ```
104
108
 
105
- For more samples [paypal-sdk-samples.herokuapp.com/merchant/](https://paypal-sdk-samples.herokuapp.com/merchant/)
106
-
107
109
  ## Samples
108
110
 
109
111
  Add following line in rails `Gemfile`:
@@ -186,7 +186,7 @@ module PayPal::SDK
186
186
 
187
187
  # PaymentTransactionCodeType This is the type of a PayPal of which matches the output from IPN
188
188
  class PaymentTransactionCodeType < EnumType
189
- self.options = { 'NONE' => 'none', 'WEBACCEPT' => 'web-accept', 'CART' => 'cart', 'SENDMONEY' => 'send-money', 'SUBSCRFAILED' => 'subscr-failed', 'SUBSCRCANCEL' => 'subscr-cancel', 'SUBSCRPAYMENT' => 'subscr-payment', 'SUBSCRSIGNUP' => 'subscr-signup', 'SUBSCREOT' => 'subscr-eot', 'SUBSCRMODIFY' => 'subscr-modify', 'MERCHTPMT' => 'mercht-pmt', 'MASSPAY' => 'mass-pay', 'VIRTUALTERMINAL' => 'virtual-terminal', 'INTEGRALEVOLUTION' => 'integral-evolution', 'EXPRESSCHECKOUT' => 'express-checkout', 'PROHOSTED' => 'pro-hosted', 'PROAPI' => 'pro-api', 'CREDIT' => 'credit' }
189
+ self.options = { 'NONE' => 'none', 'WEBACCEPT' => 'web-accept', 'CART' => 'cart', 'SENDMONEY' => 'send-money', 'SUBSCRFAILED' => 'subscr-failed', 'SUBSCRCANCEL' => 'subscr-cancel', 'SUBSCRPAYMENT' => 'subscr-payment', 'SUBSCRSIGNUP' => 'subscr-signup', 'SUBSCREOT' => 'subscr-eot', 'SUBSCRMODIFY' => 'subscr-modify', 'MERCHTPMT' => 'mercht-pmt', 'MASSPAY' => 'mass-pay', 'VIRTUALTERMINAL' => 'virtual-terminal', 'INTEGRALEVOLUTION' => 'integral-evolution', 'EXPRESSCHECKOUT' => 'express-checkout', 'PROHOSTED' => 'pro-hosted', 'PROAPI' => 'pro-api', 'CREDIT' => 'credit', 'REFUND' => 'refund', 'REVERSAL' => 'reversal' }
190
190
  end
191
191
 
192
192
 
@@ -1,7 +1,7 @@
1
1
  module PayPal
2
2
  module SDK
3
3
  module Merchant
4
- VERSION = "1.117.1"
4
+ VERSION = "1.117.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paypal-sdk-merchant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.117.1
4
+ version: 1.117.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - PayPal
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-18 00:00:00.000000000 Z
11
+ date: 2023-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: paypal-sdk-core
@@ -24,9 +24,10 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.3.0
27
- description: The PayPal Merchant SDK provides Ruby APIs for processing payments, recurring
28
- payments, subscriptions and transactions using PayPal's Merchant APIs, which include
29
- Express Checkout, Recurring Payments, Direct Payment and Transactional APIs.
27
+ description: "[Deprecated.] The PayPal Merchant SDK provides Ruby APIs for processing
28
+ payments, recurring payments, subscriptions and transactions using PayPal's Merchant
29
+ APIs, which include Express Checkout, Recurring Payments, Direct Payment and Transactional
30
+ APIs."
30
31
  email:
31
32
  - DL-PP-Platform-Ruby-SDK@paypal.com
32
33
  executables: []
@@ -53,7 +54,7 @@ homepage: https://developer.paypal.com
53
54
  licenses:
54
55
  - PayPal SDK License
55
56
  metadata: {}
56
- post_install_message:
57
+ post_install_message:
57
58
  rdoc_options: []
58
59
  require_paths:
59
60
  - lib
@@ -68,11 +69,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
69
  - !ruby/object:Gem::Version
69
70
  version: '0'
70
71
  requirements: []
71
- rubyforge_project:
72
- rubygems_version: 2.4.1
73
- signing_key:
72
+ rubygems_version: 3.4.10
73
+ signing_key:
74
74
  specification_version: 4
75
- summary: PayPal Merchant SDK
75
+ summary: Deprecated.
76
76
  test_files:
77
77
  - spec/config/cert_key.pem
78
78
  - spec/config/paypal.yml