optimistic-json 0.1.0 → 0.1.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 +4 -4
- data/README.md +1 -1
- data/lib/optimistic/json/version.rb +1 -1
- metadata +19 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40532d4105a5a8ecdcd37ec540d631dd2e959b305b7d975fff10d5d8a6247faa
|
|
4
|
+
data.tar.gz: d6774dc1d2bc0cd689f75bb7aaa27f4f3c8ce276fe5f4fe6bf261c33a2563fb3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5dfcbaf6e53ea8148e92db068c45b6886bcb15bded900e0e71890f84b76a38c5ad630edbbc9d4820f619c11aca41ac410cbc989925be5a1f110aa7e07b0d1afe
|
|
7
|
+
data.tar.gz: 7e0b425e50e1c45ae5dda1032b6c60c23177c3857c470fe36e40e71c2c6f40eb75f228e72a6a073bc63e87857a58ecc0fb403b3f3851069d0afbf4d9b05c0135
|
data/README.md
CHANGED
|
@@ -31,7 +31,7 @@ parser.parse('[1, 2, {"a": "apple')
|
|
|
31
31
|
|
|
32
32
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
33
33
|
|
|
34
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version,
|
|
34
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, run `gem bump --version <patch|minor|major|#.#.#>`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
35
35
|
|
|
36
36
|
## Contributing
|
|
37
37
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: optimistic-json
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles C. Lee
|
|
@@ -66,6 +66,20 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: gem-release
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
84
|
name: rake
|
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -169,13 +183,13 @@ files:
|
|
|
169
183
|
- lib/optimistic/json/parser.rb
|
|
170
184
|
- lib/optimistic/json/version.rb
|
|
171
185
|
- sig/optimistic/json.rbs
|
|
172
|
-
homepage: https://github.com/ChanChar/
|
|
186
|
+
homepage: https://github.com/ChanChar/optimistic-json
|
|
173
187
|
licenses:
|
|
174
188
|
- MIT
|
|
175
189
|
metadata:
|
|
176
|
-
homepage_uri: https://github.com/ChanChar/
|
|
177
|
-
source_code_uri: https://github.com/ChanChar/
|
|
178
|
-
changelog_uri: https://github.com/ChanChar/
|
|
190
|
+
homepage_uri: https://github.com/ChanChar/optimistic-json
|
|
191
|
+
source_code_uri: https://github.com/ChanChar/optimistic-json
|
|
192
|
+
changelog_uri: https://github.com/ChanChar/optimistic-json/CHANGELOG.md
|
|
179
193
|
post_install_message:
|
|
180
194
|
rdoc_options: []
|
|
181
195
|
require_paths:
|