cbor 0.5.9.8 → 0.5.9.9

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: 1fde89772ca3789b849d40d48a12849e392b7b9b02d8820fa793eeb3ae418b1a
4
- data.tar.gz: a16f9795a8bf5ead163b7fd058953fd8c0a37141573b2a283dacc4850088ea3a
3
+ metadata.gz: 4a3fa9f403e4ae0b3e86d1f1edcb9c7326d7e40d5c81b622ba45c6fedb907dd3
4
+ data.tar.gz: 735749121ea8c1baa84bb372bd069880032ff4378d4141b6e977327fb7c9be07
5
5
  SHA512:
6
- metadata.gz: effe366111276e913d3cd3d0c2f87b95deba0bfbc0665898ae55feabc4b21e652490a033655dbf516edb041cc6ee2fceb716dab6fa9896c68ef0998fdc04ac99
7
- data.tar.gz: 10199d0ecba851b398ea0d8f4998961d9f7067deac568b25ba5bbeb46ac7962d6cb8c038952ab680c6a2c31a9469e3866fcad6136164fbf6155af7d1eeb72439
6
+ metadata.gz: 8950068d33324e6d341bb399ec2b4f36d1e62fe8a532c1f9b532712a6108f0241238d298aa2923d40de10f88fa07481d29f4fb1ef08114a5124278c1c102401d
7
+ data.tar.gz: 7dcd27dd1df6dcd7f9f6e90c75e73ce6d8812f96196a9978afcfab73cd113de616810d684dfba62e0cb624b5cd29f6f0f636db0e3ea1e5c2d5306a614f1d099c
data/README.rdoc CHANGED
@@ -16,9 +16,9 @@ Use RubyGems to install:
16
16
  gem install cbor
17
17
 
18
18
  CBOR is an object representation format defined by the IETF[http://ietf.org].
19
- The specification[http://tools.ietf.org/html/rfc7049]
19
+ The specification[http://tools.ietf.org/html/rfc8949]
20
20
  is an IETF Standards-Track specification
21
- and has been published as RFC 7049.
21
+ and has been published as RFC 8949 (superseding the older RFC 7049).
22
22
 
23
23
  This is all based on wonderful work by frsyuki, and I have no idea how
24
24
  to acknowledge him appropriately. This gem is not intended to fork or
data/ext/cbor/extconf.rb CHANGED
@@ -9,7 +9,7 @@ have_func("rb_sym2str", ["ruby.h"])
9
9
  have_func("rb_str_intern", ["ruby.h"])
10
10
  have_func("rb_integer_unpack", ["ruby.h"])
11
11
 
12
- $CFLAGS << %[ -I.. -Wall -O3 -g -std=c99]
12
+ append_cflags(%w[-I.. -Wall -O3 -g -std=c99])
13
13
  #$CFLAGS << %[ -DDISABLE_RMEM]
14
14
  #$CFLAGS << %[ -DDISABLE_RMEM_REUSE_INTERNAL_FRAGMENT]
15
15
  #$CFLAGS << %[ -DDISABLE_BUFFER_READ_REFERENCE_OPTIMIZE]
@@ -17,9 +17,9 @@ $CFLAGS << %[ -I.. -Wall -O3 -g -std=c99]
17
17
 
18
18
  if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
19
19
  # msgpack-ruby doesn't modify data came from RSTRING_PTR(str)
20
- $CFLAGS << %[ -DRSTRING_NOT_MODIFIED]
20
+ append_cflags('-DRSTRING_NOT_MODIFIED')
21
21
  # Rubinius C extensions don't grab GVL while rmem is not thread safe
22
- $CFLAGS << %[ -DDISABLE_RMEM]
22
+ append_cflags('-DDISABLE_RMEM')
23
23
  end
24
24
 
25
25
  if warnflags = CONFIG['warnflags']
data/lib/cbor/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module CBOR
2
- VERSION = "0.5.9.8"
2
+ VERSION = "0.5.9.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cbor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9.8
4
+ version: 0.5.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carsten Bormann, standing on the tall shoulders of Sadayuki Furuhashi
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-12-31 00:00:00.000000000 Z
10
+ date: 2025-08-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -160,7 +159,6 @@ homepage: http://cbor.io/
160
159
  licenses:
161
160
  - Apache-2.0
162
161
  metadata: {}
163
- post_install_message:
164
162
  rdoc_options: []
165
163
  require_paths:
166
164
  - lib
@@ -175,8 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
175
173
  - !ruby/object:Gem::Version
176
174
  version: '0'
177
175
  requirements: []
178
- rubygems_version: 3.4.10
179
- signing_key:
176
+ rubygems_version: 3.6.2
180
177
  specification_version: 4
181
178
  summary: CBOR, Concise Binary Object Representation.
182
179
  test_files: