truelayer-signing 0.2.2 → 0.2.3
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 +6 -1
- data/truelayer-signing.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bd92901150104b3d2212252852071a8c3a1ed2e0a8f48ce72cb934686931bb9
|
|
4
|
+
data.tar.gz: 6ca20861d24c36d2380e070ad9d2cc47d55614cdafbf3f0ba77505b64984ec7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1b988b8a58ba51af8f6f4462e1de6871a0d79fa3d12bba9f7d12bb6ee6e14e22acc9c09268b11d622d2a6848f6ba070cc2704e6baa4b501dc89c59eb5870206
|
|
7
|
+
data.tar.gz: c4afccedb9a1f9b3676b1b69238ce0b9b4016fc883a947a44d9945f2c27944ba97373e4bd01c111cfc23ad5f4120c1075e12e4c25ed6714b1718576a6711dc62
|
data/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- ...
|
|
11
11
|
|
|
12
|
-
## [0.2.
|
|
12
|
+
## [0.2.3] – 2024-07-29
|
|
13
|
+
|
|
14
|
+
- Fix `Gemspec/AddRuntimeDependency` linter error
|
|
15
|
+
- Pin minor version for `jwt 2.7.0`
|
|
16
|
+
|
|
17
|
+
## [0.2.2] – 2023-12-07
|
|
13
18
|
|
|
14
19
|
- Add code linter
|
|
15
20
|
|
data/truelayer-signing.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "truelayer-signing"
|
|
7
|
-
s.version = "0.2.
|
|
7
|
+
s.version = "0.2.3"
|
|
8
8
|
s.summary = "Ruby gem to produce and verify TrueLayer API requests signatures"
|
|
9
9
|
s.description = "TrueLayer provides instant access to open banking to " \
|
|
10
10
|
"easily integrate next-generation payments and financial data into any app." \
|
|
@@ -32,5 +32,5 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
s.require_path = "lib"
|
|
33
33
|
|
|
34
34
|
s.required_ruby_version = ">= 2.7"
|
|
35
|
-
s.
|
|
35
|
+
s.add_dependency("jwt", "~> 2.7.0")
|
|
36
36
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: truelayer-signing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Plattret
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jwt
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 2.7.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 2.7.0
|
|
27
27
|
description: TrueLayer provides instant access to open banking to easily integrate
|
|
28
28
|
next-generation payments and financial data into any app.This helps easily sign
|
|
29
29
|
TrueLayer API requests using a JSON web signature.
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.
|
|
76
|
+
rubygems_version: 3.5.11
|
|
77
77
|
signing_key:
|
|
78
78
|
specification_version: 4
|
|
79
79
|
summary: Ruby gem to produce and verify TrueLayer API requests signatures
|