json_deep_parse 0.1.0 → 1.0.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: acc0a68cfc56dd20d95965f7075ac8240c93874c32c565246d94bb72f49cb04b
4
- data.tar.gz: 4346b87f69895442fa6821d3ce7160212368c239a2b9cd26b25f3a923b7828db
3
+ metadata.gz: 217659b4e46a4607db6dba3d973075143a4df23c057bfa4f8b093f27ac9e2351
4
+ data.tar.gz: a2d19317bf18a9bee66c40afbeb067a125f822cda9ec6f075c78b8b1bc735bc4
5
5
  SHA512:
6
- metadata.gz: '059cee6a33a91a98b708dcee5e358588733d7c197b15cb642d64d25bba60c1c0b03c690fd35d05068f7a10d9b33d3aeb2faffc775bba41e799a1d10068a620ae'
7
- data.tar.gz: a7908f60b33ade90eb09320d70b7f9aa9ea715e65bd058cf870b4e9500f0bfcc0a7ec7ee9e1d8c320ae7c5181a7dbbfdee919d54d6ccccff43f5e7cf61f12a09
6
+ metadata.gz: 7c2ecd9aa8b3bf905e9907c0a1c91927d718db2d6220298dfe07eca9673418c2845fad0574c939d6fc0f4209fa6b556bd53cafd72453736af7ed2643f3886b39
7
+ data.tar.gz: 78a821ee4b06d1e8634fd3a27bc7a6740557372094a315677d293faab104755d407b6e986ec4e80f46b11480c6cc2b77b15f6528e2e6165b0da9ab23bd036512
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /tmp/
9
9
  .DS_Store
10
10
  Gemfile.lock
11
+ *.gem
data/CHANGELOG.md CHANGED
@@ -1 +1,5 @@
1
1
  # CHANGELOG
2
+
3
+ ## [1.0.1] - 2022-07-14
4
+ ### Changed
5
+ - Updated github account references from spaceghoul to bnbry
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 spaceghoul
3
+ Copyright (c) 2019 bnbry
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -46,7 +46,7 @@ require "json_deep_parse"
46
46
 
47
47
  class SpecialParser
48
48
  using ::JSONDeepParse
49
-
49
+
50
50
  def self.parse(json_payload)
51
51
  JSON.deep_parse(json_payload)
52
52
  end
@@ -106,7 +106,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
106
106
 
107
107
  ## Contributing
108
108
 
109
- Bug reports and pull requests are welcome on GitHub at https://github.com/spaceghoul/json_deep_parse. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
109
+ Bug reports and pull requests are welcome on GitHub at https://github.com/bnbry/json_deep_parse. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
110
110
 
111
111
  ## License
112
112
 
@@ -114,4 +114,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
114
114
 
115
115
  ## Code of Conduct
116
116
 
117
- Everyone interacting in the JsonDeepParse project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/spaceghoul/json_deep_parse/blob/master/CODE_OF_CONDUCT.md).
117
+ Everyone interacting in the JsonDeepParse project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/bnbry/json_deep_parse/blob/master/CODE_OF_CONDUCT.md).
@@ -6,11 +6,11 @@ require "json_deep_parse/version"
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "json_deep_parse"
8
8
  spec.version = JsonDeepParse::VERSION
9
- spec.authors = ["spaceghoul"]
9
+ spec.authors = ["bnbry"]
10
10
  spec.email = ["mbanbury@gmail.com"]
11
11
 
12
12
  spec.summary = "Deeply parse heavily escaped and nested JSON"
13
- spec.homepage = "https://github.com/spaceghoul/json_deep_parse"
13
+ spec.homepage = "https://github.com/bnbry/json_deep_parse"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
@@ -20,9 +20,9 @@ Gem::Specification.new do |spec|
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.require_paths = ["lib"]
22
22
 
23
- spec.add_dependency "json"
23
+ spec.add_dependency "json", "~> 2.0"
24
24
 
25
- spec.add_development_dependency "bundler", "~> 1.16"
26
- spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "bundler", "~> 2.0"
26
+ spec.add_development_dependency "rake", "~> 12.3.3"
27
27
  spec.add_development_dependency "minitest", "~> 5.0"
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module JsonDeepParse
2
- VERSION = "0.1.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_deep_parse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - spaceghoul
8
- autorequire:
7
+ - bnbry
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-04 00:00:00.000000000 Z
11
+ date: 2022-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '2.0'
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: '0'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.16'
33
+ version: '2.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.16'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: 12.3.3
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: 12.3.3
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: minitest
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '5.0'
69
- description:
69
+ description:
70
70
  email:
71
71
  - mbanbury@gmail.com
72
72
  executables: []
@@ -86,11 +86,11 @@ files:
86
86
  - json_deep_parse.gemspec
87
87
  - lib/json_deep_parse.rb
88
88
  - lib/json_deep_parse/version.rb
89
- homepage: https://github.com/spaceghoul/json_deep_parse
89
+ homepage: https://github.com/bnbry/json_deep_parse
90
90
  licenses:
91
91
  - MIT
92
92
  metadata: {}
93
- post_install_message:
93
+ post_install_message:
94
94
  rdoc_options: []
95
95
  require_paths:
96
96
  - lib
@@ -105,9 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
105
  - !ruby/object:Gem::Version
106
106
  version: '0'
107
107
  requirements: []
108
- rubyforge_project:
109
- rubygems_version: 2.7.6
110
- signing_key:
108
+ rubygems_version: 3.3.7
109
+ signing_key:
111
110
  specification_version: 4
112
111
  summary: Deeply parse heavily escaped and nested JSON
113
112
  test_files: []