jsoncons 0.1.1 → 0.1.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: ab31d9df587fe4d899295ca8f8e19e354993ec6b7f5f013a534c714a169757c6
4
- data.tar.gz: d3726fc0abbdd8a11946e953e368de393097ad3072f804ba1a7d08ca7f148bee
3
+ metadata.gz: 62bffb2855d6f0cda760253602f71502521bb9c1e0e9cccca667bb40ebc62330
4
+ data.tar.gz: ea5d2b66d507e8e8c9573c54466d28a19d7db573f6f62bbe8d4b1f7e3511f884
5
5
  SHA512:
6
- metadata.gz: ff2a73dc4420cf05b778a1f9d15e36ca454587a34bc32b01d58ff6165c2c138cb9b4775a3748624f1b7fd252158c79fe66e2fb8545ce139e052b731f095846a2
7
- data.tar.gz: 615561775db0a13861f2130d18b898c0f35b75004b5e3a34cbe0e4b96846b7f60fec822edc5cfe8a80c58cf99052a708e89a32e0a24cebea6056f37ee4e7a0b9
6
+ metadata.gz: 19a23cf85d8c07c55a0410018c881b59d6e583f59fa4c4b24ff859ef22e9c72d27bcfed2a2ab1162b848ce18df72fae10a1531e62585433e275dd97c5ae7a910
7
+ data.tar.gz: 20968c8b7e7a2d9b1c2a458cdd10a853552a1692db65c39fa844fca039773c62959eafd7a38cdba6c134db1476e004a07c573640f5c2c12461e9c538e76ab1e6
data/.yardopts CHANGED
@@ -1 +1 @@
1
- -e yard_extensions.rb --markup=markdown
1
+ -e yard_extensions.rb
@@ -56,8 +56,8 @@ extern "C"
56
56
  * Document-class: Jsoncons::Json
57
57
  *
58
58
  * A wrapper for +jsoncons::ojson+ type;
59
- * +o+ stands for +order_preserving+, this type was chosen as more familiar for Ruby programmes than
60
- * sorted +jsoncons::json+.
59
+ * +o+ stands for +order_preserving+, this type was chosen as being more familiar to Ruby programmers
60
+ * than sorted +jsoncons::json+.
61
61
  * And here is the only place where strategy for converting names from C++ to Ruby, according to which
62
62
  * +jsoncons::jsonpath::jsonpath_expression+ becomes +Jsoncons::JsonPath::Expression+,
63
63
  * is not followed for convenience
data/jsoncons.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["uvlad7@gmail.com"]
10
10
 
11
11
  spec.summary = "Ruby wrapper for jsoncons library and jsonpath"
12
- spec.description = "Ruby wrapper for a part of [jsoncons](https://github.com/danielaparker/jsoncons) library," \
12
+ spec.description = "Ruby wrapper for a part of {https://github.com/danielaparker/jsoncons jsoncons} library, " \
13
13
  "mostly for its jsonpath implementation"
14
14
  spec.homepage = "https://github.com/uvlad7/ruby-jsoncons"
15
15
  spec.license = "MIT"
@@ -21,7 +21,6 @@ Gem::Specification.new do |spec|
21
21
  spec.metadata["source_code_uri"] = "https://github.com/uvlad7/ruby-jsoncons"
22
22
  spec.metadata["changelog_uri"] = "https://github.com/uvlad7/ruby-jsoncons"
23
23
  spec.metadata["documentation_uri"] = "https://rubydoc.info/gems/jsoncons/frames"
24
- spec.metadata["library_uri"] = "https://github.com/danielaparker/jsoncons"
25
24
 
26
25
  # Specify which files should be added to the gem when it is released.
27
26
  spec.files = [
@@ -39,7 +38,7 @@ Gem::Specification.new do |spec|
39
38
  spec.require_paths = ["lib"]
40
39
  spec.extensions = ["ext/jsoncons/extconf.rb"]
41
40
 
42
- spec.add_dependency "rice", "~> 4.0"
41
+ spec.add_dependency "rice", "4.0.4"
43
42
  spec.add_development_dependency "get_process_mem"
44
43
  spec.add_development_dependency "pry"
45
44
  spec.add_development_dependency "pry-byebug"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jsoncons
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
data/lib/jsoncons.rb CHANGED
@@ -9,8 +9,8 @@ module Jsoncons
9
9
  class JsonconsError < StandardError; end
10
10
 
11
11
  # A wrapper for +jsoncons::ojson+ type;
12
- # +o+ stands for +order_preserving+, this type was chosen as more familiar for Ruby programmes than
13
- # sorted +jsoncons::json+.
12
+ # +o+ stands for +order_preserving+, this type was chosen as being more familiar to Ruby programmers
13
+ # than sorted +jsoncons::json+.
14
14
  # And here is the only place where strategy for converting names from C++ to Ruby, according to which
15
15
  # +jsoncons::jsonpath::jsonpath_expression+ becomes +Jsoncons::JsonPath::Expression+,
16
16
  # is not followed for convenience
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsoncons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - uvlad7
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-23 00:00:00.000000000 Z
11
+ date: 2023-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rice
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '4.0'
19
+ version: 4.0.4
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: '4.0'
26
+ version: 4.0.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: get_process_mem
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -80,8 +80,8 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: Ruby wrapper for a part of [jsoncons](https://github.com/danielaparker/jsoncons)
84
- library,mostly for its jsonpath implementation
83
+ description: Ruby wrapper for a part of {https://github.com/danielaparker/jsoncons
84
+ jsoncons} library, mostly for its jsonpath implementation
85
85
  email:
86
86
  - uvlad7@gmail.com
87
87
  executables: []
@@ -254,7 +254,6 @@ metadata:
254
254
  source_code_uri: https://github.com/uvlad7/ruby-jsoncons
255
255
  changelog_uri: https://github.com/uvlad7/ruby-jsoncons
256
256
  documentation_uri: https://rubydoc.info/gems/jsoncons/frames
257
- library_uri: https://github.com/danielaparker/jsoncons
258
257
  post_install_message:
259
258
  rdoc_options: []
260
259
  require_paths:
@@ -270,7 +269,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
270
269
  - !ruby/object:Gem::Version
271
270
  version: '0'
272
271
  requirements: []
273
- rubygems_version: 3.3.5
272
+ rubygems_version: 3.4.20
274
273
  signing_key:
275
274
  specification_version: 4
276
275
  summary: Ruby wrapper for jsoncons library and jsonpath