json-canonicalization 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a442c09be9479be252bd504b2c92f7c44212be721947beb647ccd8aaf05a41c0
4
- data.tar.gz: cfcc5b38bd4a5bdeaaf819aae292e5b8a273d8357a98577f758254d1cf330d7f
3
+ metadata.gz: 87ab2bd4065353464b8aaeaf6301bfdb7f0c878b2aaaaa201302d8d1357dba76
4
+ data.tar.gz: c6b2e24f88048fbe03feffe429436eeccc2adaa9902d80a38ab2e0986029ddfe
5
5
  SHA512:
6
- metadata.gz: 83d3fbd447e4853f29349bbef920330bb0920c050194d12b700ff8dc1f41b70b6c51853da4f8aecc40ac238ad000877261350c0790ee7fe3a9e75834c08ed1d9
7
- data.tar.gz: c88d9ef98812d668bc41e29ec3572c27ab3afc91e43dddb5bb9bedb48dc3387adc8c9539ae768d06a6b7592c8aca8e06fa2ac60e64161202d061d6447d20eaca
6
+ metadata.gz: e79a3a9ac34be60b6eec7cd3e8eb51168584f500d8f5f361d548bcc46e6449ac28baf302af4310d15e8a5c08f18e247defd522d34cadf7083996079040c7b9f1
7
+ data.tar.gz: f12a83f2a0ab038eb69d94f66271fe82ea84c3ba04e3feb83541271e88c03d82a9603805368c063474ac2284e5711e15568b62a9ed8eec766910024dbf9ea4fa
data/README.md CHANGED
@@ -3,7 +3,7 @@ An implementation of the JSON Canonicalization Scheme for Ruby
3
3
 
4
4
  Implements [RFC8785](https://datatracker.ietf.org/doc/html/rfc8785) (JSON Canonicalization Scheme) in Ruby.
5
5
 
6
- [![Gem Version](https://badge.fury.io/rb/json-canonicalization.png)](http://badge.fury.io/rb/json-canonicalization)
6
+ [![Gem Version](https://badge.fury.io/rb/json-canonicalization.svg)](http://badge.fury.io/rb/json-canonicalization)
7
7
  [![Build Status](https://github.com/dryruby/json-canonicalization/workflows/CI/badge.svg?branch=develop)](https://github.com/dryruby/json-canonicalization/actions?query=workflow%3ACI)
8
8
  [![Coverage Status](https://coveralls.io/repos/dryruby/json-canonicalization/badge.svg)](https://coveralls.io/r/dryruby/json-canonicalization)
9
9
 
@@ -66,7 +66,7 @@ Full documentation available on [GitHub](https://dryruby.github.io/json-canonica
66
66
  * {JSON::Canonicalization}
67
67
 
68
68
  ## Dependencies
69
- * [Ruby](http://ruby-lang.org/) (>= 2.6)
69
+ * [Ruby](http://ruby-lang.org/) (>= 3.0)
70
70
  * [JSON](https://rubygems.org/gems/json) (>= 2.6)
71
71
 
72
72
  ## Author
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.1
1
+ 0.3.3
@@ -97,4 +97,3 @@ class Symbol
97
97
  self.to_json
98
98
  end
99
99
  end
100
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json-canonicalization
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregg Kellogg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-27 00:00:00.000000000 Z
11
+ date: 2023-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.10'
19
+ version: '3.12'
20
20
  type: :development
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: '3.10'
26
+ version: '3.12'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: yard
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubygems_version: 3.3.7
91
+ rubygems_version: 3.4.19
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: JSON Canonicalization for Ruby.