multi_json 1.18.0 → 1.19.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multi_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bleigh
@@ -12,8 +12,8 @@ bindir: bin
12
12
  cert_chain: []
13
13
  date: 1980-01-02 00:00:00.000000000 Z
14
14
  dependencies: []
15
- description: A common interface to multiple JSON libraries, including Oj, Yajl, the
16
- JSON gem (with C-extensions), gson, JrJackson, and OkJson.
15
+ description: A common interface to multiple JSON libraries, including fast_jsonparser,
16
+ Oj, Yajl, the JSON gem (with C-extensions), gson, JrJackson, and OkJson.
17
17
  email:
18
18
  - sferik@gmail.com
19
19
  executables: []
@@ -27,11 +27,13 @@ files:
27
27
  - lib/multi_json.rb
28
28
  - lib/multi_json/adapter.rb
29
29
  - lib/multi_json/adapter_error.rb
30
+ - lib/multi_json/adapter_selector.rb
31
+ - lib/multi_json/adapters/fast_jsonparser.rb
30
32
  - lib/multi_json/adapters/gson.rb
31
33
  - lib/multi_json/adapters/jr_jackson.rb
32
34
  - lib/multi_json/adapters/json_gem.rb
33
- - lib/multi_json/adapters/json_pure.rb
34
35
  - lib/multi_json/adapters/oj.rb
36
+ - lib/multi_json/adapters/oj_common.rb
35
37
  - lib/multi_json/adapters/ok_json.rb
36
38
  - lib/multi_json/adapters/yajl.rb
37
39
  - lib/multi_json/convertible_hash_keys.rb
@@ -45,10 +47,10 @@ licenses:
45
47
  - MIT
46
48
  metadata:
47
49
  bug_tracker_uri: https://github.com/sferik/multi_json/issues
48
- changelog_uri: https://github.com/sferik/multi_json/blob/v1.18.0/CHANGELOG.md
49
- documentation_uri: https://www.rubydoc.info/gems/multi_json/1.18.0
50
+ changelog_uri: https://github.com/sferik/multi_json/blob/v1.19.0/CHANGELOG.md
51
+ documentation_uri: https://www.rubydoc.info/gems/multi_json/1.19.0
50
52
  rubygems_mfa_required: 'true'
51
- source_code_uri: https://github.com/sferik/multi_json/tree/v1.18.0
53
+ source_code_uri: https://github.com/sferik/multi_json/tree/v1.19.0
52
54
  wiki_uri: https://github.com/sferik/multi_json/wiki
53
55
  rdoc_options: []
54
56
  require_paths:
@@ -64,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
66
  - !ruby/object:Gem::Version
65
67
  version: '0'
66
68
  requirements: []
67
- rubygems_version: 3.7.2
69
+ rubygems_version: 4.0.3
68
70
  specification_version: 4
69
71
  summary: A common interface to multiple JSON libraries.
70
72
  test_files: []
@@ -1,7 +0,0 @@
1
- require_relative "json_gem"
2
-
3
- module MultiJson
4
- module Adapters
5
- JsonPure = JsonGem
6
- end
7
- end