ianfleeton-paypal-express 1.0.0 → 1.1.0
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/.github/workflows/ci.yml +3 -2
- data/README.rdoc +2 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/ianfleeton-paypal-express.gemspec +2 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae1f81b066d289233132e852dd56db1784bf282358bcf16a1f28fb39762db320
|
4
|
+
data.tar.gz: 102cb162b3986339c993e3b4d3c342bb88611b00d3983ee5d9df4c10aa65a035
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d9e3ffddadb830c7f6b2f9dd14963901dc78430dca10e8ce3cb9adf65433798a30f240e52997843d2bfa3c317e49d7b036d1b514a78727e211cc343defe8539
|
7
|
+
data.tar.gz: 2b740a14e1ccb8019c7d9eff7a33c7d9d04b21c0fa4219c5fb7f0117ce127a2bf438560f60af1f72b743f251787dfbb5a5f9935f37de0011480a4e8c654e115b
|
data/.github/workflows/ci.yml
CHANGED
@@ -8,7 +8,7 @@ jobs:
|
|
8
8
|
ruby-versions:
|
9
9
|
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
|
10
10
|
with:
|
11
|
-
min_version: 3.
|
11
|
+
min_version: 3.2
|
12
12
|
engine: cruby
|
13
13
|
|
14
14
|
test:
|
@@ -25,7 +25,8 @@ jobs:
|
|
25
25
|
- "~> 7.0"
|
26
26
|
- "~> 7.1"
|
27
27
|
- "~> 7.2"
|
28
|
-
|
28
|
+
- "~> 8.0"
|
29
|
+
|
29
30
|
steps:
|
30
31
|
- uses: actions/checkout@v4
|
31
32
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
data/README.rdoc
CHANGED
@@ -33,11 +33,12 @@ https://paypal-express-sample.heroku.com
|
|
33
33
|
|
34
34
|
== Compatibility
|
35
35
|
|
36
|
-
We run tests on these versions of
|
36
|
+
We run tests on these versions of Active Support:
|
37
37
|
|
38
38
|
- 7.0
|
39
39
|
- 7.1
|
40
40
|
- 7.2
|
41
|
+
- 8.0
|
41
42
|
|
42
43
|
== Note on Patches/Pull Requests
|
43
44
|
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1.0
|
@@ -2,6 +2,7 @@ Gem::Specification.new do |s|
|
|
2
2
|
s.name = "ianfleeton-paypal-express"
|
3
3
|
s.version = File.read(File.join(File.dirname(__FILE__), "VERSION"))
|
4
4
|
s.licenses = ['MIT']
|
5
|
+
s.required_ruby_version = '>= 3.1.0'
|
5
6
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version=
|
6
7
|
s.authors = ["Ian Fleeton", "nov matake"]
|
7
8
|
s.description = %q{PayPal Express Checkout API Client for Instance, Recurring and Digital Goods Payment.}
|
@@ -14,7 +15,7 @@ Gem::Specification.new do |s|
|
|
14
15
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
15
16
|
s.files = `git ls-files`.split("\n")
|
16
17
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
-
s.add_dependency 'activesupport', '>= 7.0', '<
|
18
|
+
s.add_dependency 'activesupport', '>= 7.0', '< 9'
|
18
19
|
s.add_dependency 'rest-client', '~> 2.0'
|
19
20
|
s.add_dependency 'attr_required', '~> 1.0'
|
20
21
|
s.add_development_dependency 'rake', '~> 13.0', '>= 13.0.0'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ianfleeton-paypal-express
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Fleeton
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
version: '7.0'
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
23
|
+
version: '9'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
version: '7.0'
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '9'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: rest-client
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -246,14 +246,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
246
246
|
requirements:
|
247
247
|
- - ">="
|
248
248
|
- !ruby/object:Gem::Version
|
249
|
-
version:
|
249
|
+
version: 3.1.0
|
250
250
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
251
251
|
requirements:
|
252
252
|
- - ">="
|
253
253
|
- !ruby/object:Gem::Version
|
254
254
|
version: 1.3.6
|
255
255
|
requirements: []
|
256
|
-
rubygems_version: 3.
|
256
|
+
rubygems_version: 3.5.23
|
257
257
|
signing_key:
|
258
258
|
specification_version: 4
|
259
259
|
summary: PayPal Express Checkout API Client for Instance, Recurring and Digital Goods
|