legion-json 1.1.7 → 1.2.1

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: a0fe907b6559d3ede99ddb7da31e1fc3a82aee2bb82193e59d14670b1d1196e0
4
- data.tar.gz: 0f9464fbd3c9acda7449f7e1443090e081762322fea248ee82f16840cc994674
3
+ metadata.gz: 11ab7448be6e9b13f53af4616d69769eb6fc4dd83f816f5b9d2deb85bc0849a2
4
+ data.tar.gz: 0d27d2aaaa7fd763578f5d1ace8dbf844d4e0d5c85c91ebc6485b64c884406be
5
5
  SHA512:
6
- metadata.gz: f1106bc540da7e8cf20ad5063d05a5ed820f3c0c23149e3a1080422bfc3b0476fbbe168f8a2f57a3627cb27eae3801b0ebb99077e8aeb3d73d3e0814ab64864c
7
- data.tar.gz: 3d4acd0e81fe28055e113f8bcaeee0122c0b8c3e200d0735488642fcbc65f9dce96d1509eb9c7f6014a629e5a2a73e4c9b98b61df4490dd2db431c229da45e2b
6
+ metadata.gz: a0bd1762d708ec6c4bb7781fbbd77d2ce165b4d0f68e3a64d221d785751b622d8a6f681531d9461d92ca453e13be6d9d0571bad4008d0d4f83bc9d7e3f8e579a
7
+ data.tar.gz: 79a754a90f0fcc39efc1bfccf1d894019ae329d06aeb6ece45220a31498a9f02e3593ed72334817db198a06f932f32f78091716df9d656ea360cb56ab2e53303
@@ -0,0 +1,16 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
+
7
+ jobs:
8
+ ci:
9
+ uses: LegionIO/.github/.github/workflows/ci.yml@main
10
+
11
+ release:
12
+ needs: ci
13
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
14
+ uses: LegionIO/.github/.github/workflows/release.yml@main
15
+ secrets:
16
+ rubygems-api-key: ${{ secrets.RUBYGEMS_API_KEY }}
data/.gitignore CHANGED
@@ -1,18 +1,15 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
+ /Gemfile.lock
3
4
  /_yardoc/
4
5
  /coverage/
5
6
  /doc/
6
7
  /pkg/
7
8
  /spec/reports/
8
9
  /tmp/
9
- /rspec/
10
- /test-results/
11
- /.scannerwork
12
- rubocop-result.json
13
- *.gem
14
- *.pem
15
-
10
+ /legion/.idea/
11
+ /.idea/
12
+ *.key
16
13
  # rspec failure tracking
17
14
  .rspec_status
18
-
15
+ legionio.key
data/.rubocop.yml CHANGED
@@ -1,18 +1,51 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.4
3
+ NewCops: enable
4
+ SuggestExtensions: false
5
+
1
6
  Layout/LineLength:
2
- Max: 120
7
+ Max: 160
8
+
9
+ Layout/SpaceAroundEqualsInParameterDefault:
10
+ EnforcedStyle: space
11
+
12
+ Layout/HashAlignment:
13
+ EnforcedHashRocketStyle: table
14
+ EnforcedColonStyle: table
15
+
3
16
  Metrics/MethodLength:
4
- Max: 30
17
+ Max: 50
18
+
5
19
  Metrics/ClassLength:
6
20
  Max: 1500
21
+
22
+ Metrics/ModuleLength:
23
+ Max: 1500
24
+
7
25
  Metrics/BlockLength:
8
- Max: 50
9
- Style/OptionalBooleanParameter:
10
- Enabled: false
26
+ Max: 40
27
+ AllowedPatterns: ['describe', 'context', 'it', 'shared_examples']
28
+ Exclude:
29
+ - 'spec/**/*'
30
+
31
+ Metrics/AbcSize:
32
+ Max: 60
33
+
34
+ Metrics/CyclomaticComplexity:
35
+ Max: 15
36
+
37
+ Metrics/PerceivedComplexity:
38
+ Max: 17
39
+
11
40
  Style/Documentation:
12
41
  Enabled: false
13
- AllCops:
14
- TargetRubyVersion: 2.5
15
- NewCops: enable
16
- SuggestExtensions: false
42
+
43
+ Style/SymbolArray:
44
+ Enabled: true
45
+
17
46
  Style/FrozenStringLiteralComment:
47
+ Enabled: true
48
+ EnforcedStyle: always
49
+
50
+ Naming/FileName:
18
51
  Enabled: false
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.8
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Legion::JSON
2
+
3
+ ## [1.2.1] - 2026-03-22
4
+
5
+ ### Added
6
+ - `Legion::JSON::Helper` mixin module with `json_load` and `json_dump` convenience methods for LEX extensions
7
+
8
+ ## v1.2.0
9
+ Moving from BitBucket to GitHub. All git history is reset from this point on
data/CLAUDE.md ADDED
@@ -0,0 +1,66 @@
1
+ # legion-json: JSON Wrapper for LegionIO
2
+
3
+ **Repository Level 3 Documentation**
4
+ - **Parent**: `/Users/miverso2/rubymine/legion/CLAUDE.md`
5
+
6
+ ## Purpose
7
+
8
+ JSON wrapper module for the LegionIO framework. Wraps `multi_json` and `json_pure` to provide a consistent JSON interface across all Legion gems and extensions. Automatically uses faster C-extension JSON gems (like `oj`) when available.
9
+
10
+ **GitHub**: https://github.com/LegionIO/legion-json
11
+ **Version**: 1.2.0
12
+ **License**: Apache-2.0
13
+
14
+ ## Architecture
15
+
16
+ ```
17
+ Legion::JSON
18
+ ├── .load(string, symbolize_keys: true) # Deserialize JSON -> Hash
19
+ ├── .dump(object, pretty: false) # Serialize Hash -> JSON
20
+ ├── InvalidJson # Custom error class
21
+ └── ParseError # JSON parse error class
22
+ ```
23
+
24
+ ### Key Design Patterns
25
+
26
+ - **Thin Wrapper**: Delegates to `MultiJson.load` / `MultiJson.dump`
27
+ - **Symbolized Keys by Default**: `symbolize_keys: true` is the default (unlike standard JSON)
28
+ - **Auto C-Extension**: If `oj` gem is installed, `multi_json` automatically uses it for performance
29
+
30
+ ## Dependencies
31
+
32
+ | Gem | Purpose |
33
+ |-----|---------|
34
+ | `multi_json` | JSON adapter abstraction |
35
+ | `json_pure` | Pure-Ruby JSON fallback |
36
+
37
+ ## File Map
38
+
39
+ | Path | Purpose |
40
+ |------|---------|
41
+ | `lib/legion/json.rb` | Module entry with `load`/`dump` methods |
42
+ | `lib/legion/json/invalid_json.rb` | InvalidJson error class |
43
+ | `lib/legion/json/parse_error.rb` | ParseError class |
44
+ | `lib/legion/json/version.rb` | VERSION constant |
45
+
46
+ ## Role in LegionIO
47
+
48
+ **Foundation gem** - used by nearly every other Legion gem. `legion-settings` depends on it directly for config file parsing. All message serialization flows through this module.
49
+
50
+ Note: Inside the `Legion::` namespace, `JSON` refers to `Legion::JSON` — callers outside this gem must use `::JSON` to access the stdlib.
51
+
52
+ ```
53
+ legion-json
54
+ ^
55
+ |-- legion-settings
56
+ | ^
57
+ | |-- legion-cache
58
+ | |-- legion-data
59
+ | |-- legion-transport
60
+ | └-- LegionIO
61
+ └-- legion-transport (direct dependency)
62
+ ```
63
+
64
+ ---
65
+
66
+ **Maintained By**: Matthew Iverson (@Esity)
data/Gemfile CHANGED
@@ -1,7 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
4
-
5
6
  group :test do
6
7
  gem 'rake'
7
8
  gem 'rspec'
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2021 Esity
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README.md CHANGED
@@ -1,13 +1,40 @@
1
- # Legion::Json
1
+ # legion-json
2
2
 
3
- Legion::Json is part of the Legion Framework
4
- [Issue Tracker - Jira](https://legionio.atlassian.net/projects/JSON/issues)
5
- [Docs - Confluence](https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324)
6
- [RubyGems](https://rubygems.org/gems/legion-json)
3
+ JSON wrapper module for the [LegionIO](https://github.com/LegionIO/LegionIO) framework. Wraps `multi_json` and `json_pure` to provide a consistent JSON interface across all Legion gems and extensions. Automatically uses faster C-extension JSON gems (like `oj`) when available.
4
+
5
+ **Version**: 1.2.0
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ gem install legion-json
11
+ ```
12
+
13
+ Or add to your Gemfile:
14
+
15
+ ```ruby
16
+ gem 'legion-json'
17
+ ```
7
18
 
8
19
  ## Usage
9
- This library provides the Legion JSON parser abstraction, enabling the use of platform specific JSON parsers.
10
- Based on the old sensu-json gem
20
+
21
+ ```ruby
22
+ require 'legion/json'
23
+
24
+ json_string = '{"foo":"bar","nested":{"hello":"world"}}'
25
+ Legion::JSON.load(json_string) # => {foo: "bar", nested: {hello: "world"}}
26
+ Legion::JSON.load(json_string, symbolize_keys: false) # => {"foo" => "bar", ...}
27
+
28
+ hash = { foo: 'bar', nested: { hello: 'world' } }
29
+ Legion::JSON.dump(hash) # => '{"foo":"bar","nested":{"hello":"world"}}'
30
+ ```
31
+
32
+ Keys are symbolized by default, unlike standard Ruby JSON.
33
+
34
+ ## Requirements
35
+
36
+ - Ruby >= 3.4
11
37
 
12
38
  ## License
13
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
39
+
40
+ Apache-2.0
data/legion-json.gemspec CHANGED
@@ -1,6 +1,6 @@
1
- lib = File.expand_path('lib', __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require 'legion/json/version'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/legion/json/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'legion-json'
@@ -8,25 +8,24 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Esity']
9
9
  spec.email = ['matthewdiverson@gmail.com']
10
10
 
11
- spec.summary = 'Legion JSON'
12
- spec.description = 'A gem used to load and use JSON objects inside the Legion framework'
13
- spec.homepage = 'https://bitbucket.org/legion-io/legion-json'
14
- spec.license = 'MIT'
15
- spec.required_ruby_version = '>= 2.5'
11
+ spec.summary = 'Wraps multi_json, json_pure and others to allow for interchanging json gems without deploying all new extensions'
12
+ spec.description = 'A JSON wrapper module for the LegionIO framework'
13
+ spec.homepage = 'https://github.com/LegionIO/legion-json'
14
+ spec.license = 'Apache-2.0'
15
+ spec.require_paths = ['lib']
16
+ spec.required_ruby_version = '>= 3.4'
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.extra_rdoc_files = %w[README.md LICENSE CHANGELOG.md]
16
19
  spec.metadata = {
17
- 'bug_tracker_uri' => 'https://legionio.atlassian.net/projects/JSON/issues',
18
- 'changelog_uri' => 'https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324/JSON',
19
- 'documentation_uri' => 'https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324/JSON',
20
- 'homepage_uri' => 'https://legionio.atlassian.net/wiki/spaces/LEGION',
21
- 'source_code_uri' => 'https://bitbucket.org/legion-io/legion-json',
22
- 'wiki_uri' => 'https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324/JSON'
20
+ 'bug_tracker_uri' => 'https://github.com/LegionIO/legion-json/issues',
21
+ 'changelog_uri' => 'https://github.com/LegionIO/legion-json/blob/main/CHANGELOG.md',
22
+ 'documentation_uri' => 'https://github.com/LegionIO/legion-json',
23
+ 'homepage_uri' => 'https://github.com/LegionIO/LegionIO',
24
+ 'source_code_uri' => 'https://github.com/LegionIO/legion-json',
25
+ 'wiki_uri' => 'https://github.com/LegionIO/legion-json/wiki',
26
+ 'rubygems_mfa_required' => 'true'
23
27
  }
24
28
 
25
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
- f.match(%r{^(test|spec|features)/})
27
- end
28
- spec.require_paths = ['lib']
29
-
30
29
  spec.add_dependency 'json_pure'
31
30
  spec.add_dependency 'multi_json'
32
31
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Legion
4
+ module JSON
5
+ module Helper
6
+ def json_load(string, symbolize_keys: true)
7
+ Legion::JSON.load(string, symbolize_keys: symbolize_keys)
8
+ end
9
+
10
+ def json_dump(object, pretty: false)
11
+ Legion::JSON.dump(object, pretty: pretty)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Legion
4
+ module Exception
5
+ class InvalidJson < StandardError; end
6
+ end
7
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Legion
2
4
  module JSON
3
5
  # The Legion JSON parser error abstraction.
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Legion
2
4
  module Json
3
- VERSION = '1.1.7'.freeze
5
+ VERSION = '1.2.1'
4
6
  end
5
7
  end
data/lib/legion/json.rb CHANGED
@@ -1,23 +1,29 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'legion/json/version'
2
4
  require 'legion/json/parse_error'
5
+ require 'legion/json/invalid_json'
6
+ require 'json'
3
7
  require 'multi_json'
8
+ require_relative 'json/helper'
4
9
 
5
10
  module Legion
6
11
  module JSON
7
- class << self
8
- def parser
9
- @parser ||= MultiJson
10
- end
12
+ def parser
13
+ @parser ||= MultiJson
14
+ end
15
+ module_function :parser
11
16
 
12
- def load(string, symbolize_keys = true)
13
- MultiJson.load(string, symbolize_keys: symbolize_keys)
14
- rescue StandardError => e
15
- raise Legion::JSON::ParseError.build(e, string)
16
- end
17
+ def load(string, symbolize_keys: true)
18
+ parser.load(string, symbolize_keys: symbolize_keys)
19
+ rescue StandardError => e
20
+ raise Legion::JSON::ParseError.build(e, string)
21
+ end
22
+ module_function :load
17
23
 
18
- def dump(object, pretty = false)
19
- parser.dump(object, pretty: pretty)
20
- end
24
+ def dump(object, pretty: false)
25
+ parser.dump(object, pretty: pretty)
21
26
  end
27
+ module_function :dump
22
28
  end
23
29
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legion-json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2021-05-28 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: json_pure
@@ -38,35 +37,43 @@ dependencies:
38
37
  - - ">="
39
38
  - !ruby/object:Gem::Version
40
39
  version: '0'
41
- description: A gem used to load and use JSON objects inside the Legion framework
40
+ description: A JSON wrapper module for the LegionIO framework
42
41
  email:
43
42
  - matthewdiverson@gmail.com
44
43
  executables: []
45
44
  extensions: []
46
- extra_rdoc_files: []
45
+ extra_rdoc_files:
46
+ - CHANGELOG.md
47
+ - LICENSE
48
+ - README.md
47
49
  files:
50
+ - ".github/workflows/ci.yml"
48
51
  - ".gitignore"
49
52
  - ".rubocop.yml"
53
+ - ".ruby-version"
54
+ - CHANGELOG.md
55
+ - CLAUDE.md
50
56
  - Gemfile
51
- - LICENSE.txt
57
+ - LICENSE
52
58
  - README.md
53
- - bitbucket-pipelines.yml
54
59
  - legion-json.gemspec
55
60
  - lib/legion/json.rb
61
+ - lib/legion/json/helper.rb
62
+ - lib/legion/json/invalid_json.rb
56
63
  - lib/legion/json/parse_error.rb
57
64
  - lib/legion/json/version.rb
58
65
  - sonar-project.properties
59
- homepage: https://bitbucket.org/legion-io/legion-json
66
+ homepage: https://github.com/LegionIO/legion-json
60
67
  licenses:
61
- - MIT
68
+ - Apache-2.0
62
69
  metadata:
63
- bug_tracker_uri: https://legionio.atlassian.net/projects/JSON/issues
64
- changelog_uri: https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324/JSON
65
- documentation_uri: https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324/JSON
66
- homepage_uri: https://legionio.atlassian.net/wiki/spaces/LEGION
67
- source_code_uri: https://bitbucket.org/legion-io/legion-json
68
- wiki_uri: https://legionio.atlassian.net/wiki/spaces/LEGION/pages/24674324/JSON
69
- post_install_message:
70
+ bug_tracker_uri: https://github.com/LegionIO/legion-json/issues
71
+ changelog_uri: https://github.com/LegionIO/legion-json/blob/main/CHANGELOG.md
72
+ documentation_uri: https://github.com/LegionIO/legion-json
73
+ homepage_uri: https://github.com/LegionIO/LegionIO
74
+ source_code_uri: https://github.com/LegionIO/legion-json
75
+ wiki_uri: https://github.com/LegionIO/legion-json/wiki
76
+ rubygems_mfa_required: 'true'
70
77
  rdoc_options: []
71
78
  require_paths:
72
79
  - lib
@@ -74,15 +81,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
74
81
  requirements:
75
82
  - - ">="
76
83
  - !ruby/object:Gem::Version
77
- version: '2.5'
84
+ version: '3.4'
78
85
  required_rubygems_version: !ruby/object:Gem::Requirement
79
86
  requirements:
80
87
  - - ">="
81
88
  - !ruby/object:Gem::Version
82
89
  version: '0'
83
90
  requirements: []
84
- rubygems_version: 3.1.6
85
- signing_key:
91
+ rubygems_version: 3.6.9
86
92
  specification_version: 4
87
- summary: Legion JSON
93
+ summary: Wraps multi_json, json_pure and others to allow for interchanging json gems
94
+ without deploying all new extensions
88
95
  test_files: []
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2018 Miverson
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
@@ -1,74 +0,0 @@
1
- image: ruby:2.7
2
-
3
-
4
- definitions:
5
- steps:
6
- - step: &rubocop
7
- name: Rubocop
8
- runs-on: self.hosted
9
- script:
10
- - gem install rubocop rubocop-rspec rubocop-performance rubocop-sequel rubocop-md rubocop-sequel --no-document
11
- - rubocop --format junit --out test-reports/junit.xml
12
- - step: &rspec
13
- name: RSpec 2.7
14
- runs-on: self.hosted
15
- caches:
16
- - bundler
17
- script:
18
- - gem install bundler rspec rspec_junit_formatter
19
- - bundle install
20
- - bundle exec rspec --format RspecJunitFormatter --out test-reports/junit.xml
21
- caches:
22
- bundler: /usr/local/bundle
23
-
24
- pipelines:
25
- default:
26
- - step: *rubocop
27
- - step: *rspec
28
- - parallel:
29
- - step:
30
- <<: *rspec
31
- name: RSpec 2.5
32
- image: ruby:2.5
33
- - step:
34
- <<: *rspec
35
- name: RSpec 2.6
36
- image: ruby:2.6
37
- - step:
38
- <<: *rspec
39
- name: RSpec 3
40
- image: ruby:3
41
- pull-requests:
42
- master:
43
- - step: *rubocop
44
- - step: *rspec
45
- - parallel:
46
- - step:
47
- <<: *rspec
48
- name: RSpec 2.5
49
- image: ruby:2.5
50
- - step:
51
- <<: *rspec
52
- name: RSpec 2.6
53
- image: ruby:2.6
54
- - step:
55
- <<: *rspec
56
- name: RSpec 3
57
- image: ruby:3
58
- - step:
59
- name: RubyGems Deployment
60
- deployment: RubyGems
61
- runs-on: self.hosted
62
- script:
63
- - gem install gem-release
64
- - (umask 077 ; echo $gem_creds | base64 --decode > ~/.gem/credentials)
65
- - gem release --tag --push
66
- - git push --tags
67
- - gem build
68
- condition:
69
- changesets:
70
- includePaths:
71
- - "lib/legion/json/version.rb"
72
- artifacts:
73
- - pkg/**
74
- - '*.gem'