jsoncons 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -1
- data/ext/jsoncons/jsoncons.cpp +2 -2
- data/jsoncons.gemspec +2 -3
- data/lib/jsoncons/version.rb +1 -1
- data/lib/jsoncons.rb +2 -2
- metadata +9 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62bffb2855d6f0cda760253602f71502521bb9c1e0e9cccca667bb40ebc62330
|
4
|
+
data.tar.gz: ea5d2b66d507e8e8c9573c54466d28a19d7db573f6f62bbe8d4b1f7e3511f884
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19a23cf85d8c07c55a0410018c881b59d6e583f59fa4c4b24ff859ef22e9c72d27bcfed2a2ab1162b848ce18df72fae10a1531e62585433e275dd97c5ae7a910
|
7
|
+
data.tar.gz: 20968c8b7e7a2d9b1c2a458cdd10a853552a1692db65c39fa844fca039773c62959eafd7a38cdba6c134db1476e004a07c573640f5c2c12461e9c538e76ab1e6
|
data/.yardopts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
-e yard_extensions.rb
|
1
|
+
-e yard_extensions.rb
|
data/ext/jsoncons/jsoncons.cpp
CHANGED
@@ -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
|
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
|
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", "
|
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"
|
data/lib/jsoncons/version.rb
CHANGED
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
|
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.
|
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-
|
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:
|
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:
|
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
|
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.
|
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
|