jsong 0.2.0 → 0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -29
  3. data/lib/jsong/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 05bb0fef8f7a98bf283a9e4378895ce32b1cd2df
4
- data.tar.gz: feeafcd168d8270690fd11d93aafffa45a1c2f19
3
+ metadata.gz: '09216bf36af309e67bfe39a861960b2b1f8b198c'
4
+ data.tar.gz: 508d7c36c1a03fcdca2642543b159314b0d0377a
5
5
  SHA512:
6
- metadata.gz: 4b1bf34f0ac19063ed6c0d8e95613bd2a73408b02fe1b37fa54bcef8fbb05c9240444bfce8dd6091601a8224d4567ce9b72c9307008dc17f2c0e2eec05a3823d
7
- data.tar.gz: d9d80e894e4f42cdb48eb9ba0028cadc004d85be8ce3484332d10bcec4d4c86077719020051c85088314d2c425cd6738634948d2fd6605a9761e294073c827ec
6
+ metadata.gz: 03b1506cfeba6c96efeaa1130b9371d823e8ddcf774dae26782df906a7c2e66a8b0ddaacbb5580c380e129c7822e0aad72a9761f308fe08d9cdfbd0da05d9031
7
+ data.tar.gz: 2e2f69e331808df5cbfe516521451edfbaf84b088a1682326b434655f25e02cde14b4c5c92edbbc729b10752b5a64a90b15a58dddbadc363a68039e78f51f161
data/README.md CHANGED
@@ -1,29 +1,20 @@
1
1
  # Jsong
2
-
3
- Jsong is an encoder for the popular JSON-G format, written in Ruby. *Currently only supports PNG.*
2
+ Jsong is an encoder for the popular JSON-G format, written in Ruby. *This implementation currently only supports PNG.*
4
3
 
5
4
  ## Installation
6
-
7
5
  Add this line to your application's Gemfile:
8
-
9
6
  ```ruby
10
7
  gem 'jsong'
11
8
  ```
12
-
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
18
-
19
- $ gem install jsong
9
+ Or install it yourself with:
10
+ ```sh
11
+ $ gem install jsong
12
+ ```
20
13
 
21
14
  ## Tested
22
-
23
15
  Yes
24
16
 
25
17
  ## Usage
26
-
27
18
  ```rb
28
19
  require 'jsong'
29
20
 
@@ -34,25 +25,16 @@ jsong_text = Jsong.to_jsong('./sample_data/tomato.png', 'nice tomato')
34
25
  Jsong.from_jsong(jsong_text, './sample_data/tomato.png')
35
26
  ```
36
27
 
37
- ### Similar Projects
38
- * [json-g.rs Rust crate](https://github.com/zeyla/json-g.rs)
39
- * [JSON-G library index](https://github.com/Roadcrosser/JSON-G/blob/master/resources.md)
40
-
41
-
42
- ### Reference
28
+ ## Reference
43
29
  [JSON-G Specification](https://github.com/Roadcrosser/JSON-G/blob/master/spec.md)
44
30
 
45
- ## Development
46
-
47
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
48
-
49
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
31
+ ## Similar Projects
32
+ * [json-g.rs rust crate](https://github.com/zeyla/json-g.rs)
33
+ * [jsng node module](https://github.com/abalabahaha/jsng)
34
+ * [JSON-G library index](https://github.com/Roadcrosser/JSON-G/blob/master/resources.md)
50
35
 
51
36
  ## Contributing
52
-
53
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jsong. 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.
54
-
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/fwrs/jsong. 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.
55
38
 
56
39
  ## License
57
-
58
40
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/lib/jsong/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jsong
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsong
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Illia K.