philiprehberger-signed_payload 0.2.0 → 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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +1 -0
- data/lib/philiprehberger/signed_payload/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83347ad59792944070ff76edad1ef18f4c2a325ebadd3cd36cbddc5e4457bdf9
|
|
4
|
+
data.tar.gz: 723d772812baaee336f41a8602327530ccbcfef09eb84aabee46f2c3639af078
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e999ab32f7d41de62d9364d1fca848787ca44180c8785c8990159cf4593afa50d4c754341a481698f3e9faa789766ddae7d3079a9c68ddfc8083d9f79d782b26
|
|
7
|
+
data.tar.gz: 5f3af2e23d2a29a1ea65a28380e15c0612c3b279ba059abf019d8049dbb2d9ad8a49b7853d7546aa784a10021c28bbcb9ff2ce4b4b6627d36a110ea144fccb49
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
- Fix RuboCop Style/StringLiterals violations in gemspec
|
|
6
|
+
|
|
7
|
+
## 0.2.1
|
|
8
|
+
|
|
9
|
+
- Add License badge to README
|
|
10
|
+
- Add bug_tracker_uri to gemspec
|
|
11
|
+
|
|
3
12
|
All notable changes to this gem will be documented in this file.
|
|
4
13
|
|
|
5
14
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-signed-payload/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-signed_payload)
|
|
5
|
+
[](LICENSE)
|
|
5
6
|
|
|
6
7
|
Simple cryptographic signing and verification for JSON payloads using HMAC.
|
|
7
8
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-signed_payload
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A zero-dependency Ruby gem for signing and verifying JSON payloads using
|
|
14
14
|
HMAC-SHA256 with optional expiration and timing-safe comparison.
|
|
@@ -32,6 +32,7 @@ metadata:
|
|
|
32
32
|
homepage_uri: https://github.com/philiprehberger/rb-signed-payload
|
|
33
33
|
source_code_uri: https://github.com/philiprehberger/rb-signed-payload
|
|
34
34
|
changelog_uri: https://github.com/philiprehberger/rb-signed-payload/blob/main/CHANGELOG.md
|
|
35
|
+
bug_tracker_uri: https://github.com/philiprehberger/rb-signed-payload/issues
|
|
35
36
|
rubygems_mfa_required: 'true'
|
|
36
37
|
post_install_message:
|
|
37
38
|
rdoc_options: []
|
|
@@ -41,7 +42,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
41
42
|
requirements:
|
|
42
43
|
- - ">="
|
|
43
44
|
- !ruby/object:Gem::Version
|
|
44
|
-
version:
|
|
45
|
+
version: 3.1.0
|
|
45
46
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
47
|
requirements:
|
|
47
48
|
- - ">="
|