jsoncons 0.1.1 → 0.1.2
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 +4 -4
- data/.yardopts +1 -1
- data/ext/jsoncons/jsoncons.cpp +2 -2
- data/jsoncons.gemspec +1 -2
- data/lib/jsoncons/version.rb +1 -1
- data/lib/jsoncons.rb +2 -2
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f85ec5dfb5d68fae8221001e0356ae3ecb5572fe7c72f79707a93ba49e915d7
|
|
4
|
+
data.tar.gz: 84d4bf57f87ec3a38f79f6da24b1b0d85efa7cced95d8e7c353ce4c2f226e906
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21e211c8f4905fa6cfeb086cb4f6c78253c505c3efeadd496e7659a15ea98ca4b6610fd416bf83648ab1a432fc70d0cea590d390ed2106ed1c93c6b948906d99
|
|
7
|
+
data.tar.gz: c99824de61bccc5d537c4bd14b0196352e6a85cc2e005a147a1dd6fa6aa965406b8e0e5fd2502caa24e2496c8cc6eaa296956ce0e96329e68cd5cb1a1bfd297d
|
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 = [
|
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,7 +1,7 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- uvlad7
|
|
@@ -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:
|