hx_cbor 2021.8.20 → 2024.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -0
  3. data/.travis.yml +0 -0
  4. data/ChangeLog +0 -0
  5. data/Gemfile +0 -0
  6. data/README.rdoc +0 -0
  7. data/Rakefile +0 -0
  8. data/doclib/cbor/buffer.rb +0 -0
  9. data/doclib/cbor/core_ext.rb +0 -0
  10. data/doclib/cbor/error.rb +0 -0
  11. data/doclib/cbor/packer.rb +0 -0
  12. data/doclib/cbor/simple.rb +0 -0
  13. data/doclib/cbor/tagged.rb +0 -0
  14. data/doclib/cbor/unpacker.rb +0 -0
  15. data/doclib/cbor.rb +0 -0
  16. data/ext/cbor/buffer.c +0 -0
  17. data/ext/cbor/buffer.h +0 -0
  18. data/ext/cbor/buffer_class.c +2 -1
  19. data/ext/cbor/buffer_class.h +0 -0
  20. data/ext/cbor/cbor.h +0 -0
  21. data/ext/cbor/compat.h +0 -0
  22. data/ext/cbor/core_ext.c +0 -0
  23. data/ext/cbor/core_ext.h +0 -0
  24. data/ext/cbor/example.rb +0 -0
  25. data/ext/cbor/extconf.rb +0 -0
  26. data/ext/cbor/install.sh +0 -0
  27. data/ext/cbor/packer.c +0 -0
  28. data/ext/cbor/packer.h +0 -0
  29. data/ext/cbor/packer_class.c +0 -0
  30. data/ext/cbor/packer_class.h +0 -0
  31. data/ext/cbor/rbinit.c +0 -0
  32. data/ext/cbor/renamer.h +0 -0
  33. data/ext/cbor/rmem.c +0 -0
  34. data/ext/cbor/rmem.h +0 -0
  35. data/ext/cbor/sysdep.h +0 -0
  36. data/ext/cbor/sysdep_endian.h +0 -0
  37. data/ext/cbor/sysdep_types.h +0 -0
  38. data/ext/cbor/unpacker.c +0 -0
  39. data/ext/cbor/unpacker.h +0 -0
  40. data/ext/cbor/unpacker_class.c +2 -1
  41. data/ext/cbor/unpacker_class.h +0 -0
  42. data/hx_cbor.gemspec +0 -0
  43. data/lib/cbor/version.rb +1 -1
  44. data/lib/cbor.rb +0 -0
  45. data/spec/buffer_io_spec.rb +0 -0
  46. data/spec/buffer_spec.rb +0 -0
  47. data/spec/cases.cbor +0 -0
  48. data/spec/cases.cbor_stream +0 -0
  49. data/spec/cases.json +0 -0
  50. data/spec/cases.msg +0 -0
  51. data/spec/cases_compact.msg +0 -0
  52. data/spec/cases_spec.rb +0 -0
  53. data/spec/format_spec.rb +0 -0
  54. data/spec/packer_spec.rb +0 -0
  55. data/spec/random_compat.rb +0 -0
  56. data/spec/spec_helper.rb +0 -0
  57. data/spec/unpacker_spec.rb +0 -0
  58. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20b2a1c98e3d92ad1045bfef47cb5de48075082dd845044c6ba4a22125f59ba8
4
- data.tar.gz: 4c3175e68f8a7b82eafe846d23347b403c8b0796c542078c2b9e4896d8b71e01
3
+ metadata.gz: ad5aa5c9e58c0ee6993dc84f5f67bf46899fcc4ba71d2762cdd7135d216cd957
4
+ data.tar.gz: '08633a9bebcb41aea29bbbba5d9095f549e734a7c0f4a79285cbab3226a358c8'
5
5
  SHA512:
6
- metadata.gz: ab71bb54d7ae983c7f1946c36b07dab68e12ac70980af7b093fee7dee2267683326699f281db135361fd39f590b5b0ef41059973642b91602b78201acf30f8e8
7
- data.tar.gz: ff2aab16ae8e19a9823746c8ebe5daed5d5517433594ff40ae8c8095ae574c80e22d7b86b89e68c078f572375b5037a94203e7bfa2fbadfbccbac2c4e49017bd
6
+ metadata.gz: dafbd70188f80bf620bc5ac7e0fcff50d8a87b0b297658e46823bf708777f805888946aebd1f808f1005bbdea09dfefd17247434a8932c4d57d206cccc12021d
7
+ data.tar.gz: 4a7307c515e281d26c02507131db037e27766f1d8510ed65f944f93c1bd7c0b7f567ee5963c2f1b1c417231cc0a80bf0ff84fcc66cbdd078a504d49ce912e163
data/.gitignore CHANGED
File without changes
data/.travis.yml CHANGED
File without changes
data/ChangeLog CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/README.rdoc CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
File without changes
data/doclib/cbor/error.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
data/doclib/cbor.rb CHANGED
File without changes
data/ext/cbor/buffer.c CHANGED
File without changes
data/ext/cbor/buffer.h CHANGED
File without changes
@@ -254,10 +254,11 @@ static VALUE read_until_eof_rescue(VALUE args)
254
254
  return Qnil;
255
255
  }
256
256
 
257
- static VALUE read_until_eof_error(VALUE args)
257
+ static VALUE read_until_eof_error(VALUE args, VALUE error)
258
258
  {
259
259
  /* ignore EOFError */
260
260
  UNUSED(args);
261
+ UNUSED(error);
261
262
  return Qnil;
262
263
  }
263
264
 
File without changes
data/ext/cbor/cbor.h CHANGED
File without changes
data/ext/cbor/compat.h CHANGED
File without changes
data/ext/cbor/core_ext.c CHANGED
File without changes
data/ext/cbor/core_ext.h CHANGED
File without changes
data/ext/cbor/example.rb CHANGED
File without changes
data/ext/cbor/extconf.rb CHANGED
File without changes
data/ext/cbor/install.sh CHANGED
File without changes
data/ext/cbor/packer.c CHANGED
File without changes
data/ext/cbor/packer.h CHANGED
File without changes
File without changes
File without changes
data/ext/cbor/rbinit.c CHANGED
File without changes
data/ext/cbor/renamer.h CHANGED
File without changes
data/ext/cbor/rmem.c CHANGED
File without changes
data/ext/cbor/rmem.h CHANGED
File without changes
data/ext/cbor/sysdep.h CHANGED
File without changes
File without changes
File without changes
data/ext/cbor/unpacker.c CHANGED
File without changes
data/ext/cbor/unpacker.h CHANGED
File without changes
@@ -261,9 +261,10 @@ static VALUE Unpacker_each_impl(VALUE self)
261
261
  }
262
262
  }
263
263
 
264
- static VALUE Unpacker_rescue_EOFError(VALUE self)
264
+ static VALUE Unpacker_rescue_EOFError(VALUE self, VALUE error)
265
265
  {
266
266
  UNUSED(self);
267
+ UNUSED(error);
267
268
  return Qnil;
268
269
  }
269
270
 
File without changes
data/hx_cbor.gemspec CHANGED
File without changes
data/lib/cbor/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module CBOR
2
- VERSION = "2021.8.20"
2
+ VERSION = "2024.7.7"
3
3
  end
data/lib/cbor.rb CHANGED
File without changes
File without changes
data/spec/buffer_spec.rb CHANGED
File without changes
data/spec/cases.cbor CHANGED
File without changes
File without changes
data/spec/cases.json CHANGED
File without changes
data/spec/cases.msg CHANGED
File without changes
File without changes
data/spec/cases_spec.rb CHANGED
File without changes
data/spec/format_spec.rb CHANGED
File without changes
data/spec/packer_spec.rb CHANGED
File without changes
File without changes
data/spec/spec_helper.rb CHANGED
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hx_cbor
3
3
  version: !ruby/object:Gem::Version
4
- version: 2021.8.20
4
+ version: 2024.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carsten Bormann, Hxcan Cai
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-20 00:00:00.000000000 Z
11
+ date: 2024-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -163,7 +163,7 @@ homepage: https://stupidbeauty.com/Blog/article/1900
163
163
  licenses:
164
164
  - Apache-2.0
165
165
  metadata: {}
166
- post_install_message:
166
+ post_install_message:
167
167
  rdoc_options: []
168
168
  require_paths:
169
169
  - lib
@@ -178,8 +178,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
178
  - !ruby/object:Gem::Version
179
179
  version: '0'
180
180
  requirements: []
181
- rubygems_version: 3.1.6
182
- signing_key:
181
+ rubygems_version: 3.4.10
182
+ signing_key:
183
183
  specification_version: 4
184
184
  summary: CBOR, Concise Binary Object Representation.
185
185
  test_files: