paypal-sdk-invoice 1.117.0 → 1.117.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 +5 -5
- data/README.md +4 -25
- data/Rakefile +1 -6
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6cd1a250ab652a95af1f6141ae9c4bf74257b8fc85e1c0c605bca043ff5fcc22
|
4
|
+
data.tar.gz: 54b792333eab0104e20aed6c7496dcb71f9750234d705bdf9cf2c5f792aeccf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91cbd4d591586255d53bf25c882a830b613f99c2e2806df08d24493c09b30332e5a596f215d1db266b5053a9cd104c7eb6be50ef28ea11f36373d81669135324
|
7
|
+
data.tar.gz: cc63ac236c399512d5a2d5668ef19f00273900b619e325743abddfc3f62d0579c4745ac836c15b5b775df7dfbe3b205c6098815f43800d7e537588437969da72
|
data/README.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
The PayPal Invoice SDK provides Ruby APIs to create and manage Invoices using the PayPal's Invoicing Service API.
|
4
4
|
|
5
|
+
## Support
|
6
|
+
|
7
|
+
> Please contact [PayPal Technical Support](https://developer.paypal.com/support/) for any live or account issues.
|
8
|
+
|
5
9
|
## Installation
|
6
10
|
|
7
11
|
Add this line to your application's Gemfile:
|
@@ -98,28 +102,3 @@ else
|
|
98
102
|
@create_invoice_response.error
|
99
103
|
end
|
100
104
|
```
|
101
|
-
|
102
|
-
For more samples [paypal-sdk-samples.herokuapp.com/invoice/](https://paypal-sdk-samples.herokuapp.com/invoice/)
|
103
|
-
|
104
|
-
## Samples App
|
105
|
-
|
106
|
-
Add following line in rails `Gemfile`:
|
107
|
-
|
108
|
-
```ruby
|
109
|
-
gem 'paypal-sdk-invoice'
|
110
|
-
gem 'invoice_samples', :git => "https://github.com/paypal/invoice-sdk-ruby.git", :group => :development
|
111
|
-
```
|
112
|
-
|
113
|
-
Configure routes(`config/routes.rb`):
|
114
|
-
|
115
|
-
```ruby
|
116
|
-
mount InvoiceSamples::Engine => "/samples" if Rails.env.development?
|
117
|
-
```
|
118
|
-
|
119
|
-
To get default paypal configuration execute:
|
120
|
-
|
121
|
-
```bash
|
122
|
-
$ rails g paypal:sdk:install
|
123
|
-
```
|
124
|
-
|
125
|
-
Run `rails server` and check the samples.
|
data/Rakefile
CHANGED
@@ -2,13 +2,8 @@ require "bundler/gem_tasks"
|
|
2
2
|
|
3
3
|
desc "Run tests"
|
4
4
|
task :rspec do
|
5
|
-
cmd = "bundle exec rspec
|
5
|
+
cmd = "bundle exec rspec"
|
6
6
|
system(cmd) || raise("#{cmd} failed")
|
7
7
|
end
|
8
8
|
|
9
|
-
desc "View samples"
|
10
|
-
task :samples do
|
11
|
-
system("cd samples/spec/dummy && bundle exec rails server")
|
12
|
-
end
|
13
|
-
|
14
9
|
task :default => :rspec
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paypal-sdk-invoice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.117.
|
4
|
+
version: 1.117.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PayPal
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: paypal-sdk-core
|
@@ -24,8 +24,9 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 0.3.0
|
27
|
-
description: The PayPal Invoice SDK provides Ruby APIs to create and
|
28
|
-
using the PayPal's Invoicing Service API.
|
27
|
+
description: "[Deprecated] The PayPal Invoice SDK provides Ruby APIs to create and
|
28
|
+
manage Invoices using the PayPal's Invoicing Service API. It is recommended to use
|
29
|
+
paypal-server-sdk instead"
|
29
30
|
email:
|
30
31
|
- DL-PP-Platform-Ruby-SDK@ebay.com
|
31
32
|
executables: []
|
@@ -48,7 +49,7 @@ files:
|
|
48
49
|
homepage: https://developer.paypal.com
|
49
50
|
licenses: []
|
50
51
|
metadata: {}
|
51
|
-
post_install_message:
|
52
|
+
post_install_message:
|
52
53
|
rdoc_options: []
|
53
54
|
require_paths:
|
54
55
|
- lib
|
@@ -63,11 +64,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
64
|
- !ruby/object:Gem::Version
|
64
65
|
version: '0'
|
65
66
|
requirements: []
|
66
|
-
|
67
|
-
|
68
|
-
signing_key:
|
67
|
+
rubygems_version: 3.5.23
|
68
|
+
signing_key:
|
69
69
|
specification_version: 4
|
70
|
-
summary:
|
70
|
+
summary: "[Deprecated] It is recommended to use paypal-server-sdk instead"
|
71
71
|
test_files:
|
72
72
|
- spec/config/cert_key.pem
|
73
73
|
- spec/config/paypal.yml
|