outstream-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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/outstream/json.rb +5 -5
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb20f4f2c4d3bd0e47eff8c74a58066c9c0a8ccc
4
- data.tar.gz: 0145f35292dfb81f1c2f19e7b28b06d507b7cefa
3
+ metadata.gz: f930b16d521d2755bfe9d6d7d2991f9462dc9966
4
+ data.tar.gz: 860c74f446317f9f211f1e5108446dec9f0dfe53
5
5
  SHA512:
6
- metadata.gz: 70215a331d253f1bc969c432dd351e54665d59a60673c8c952ac49c00796440f5028bda6d0680677f6ad0987330c70193d35a88ec6cf51b01c00dbc92d17933b
7
- data.tar.gz: 2f741ba68be98df355d460a6f97a74862a93a9adc3ef2ead32209df347a3c63c582734d603cf6b254f4b2a2bf5e5030d688608a9f48738c1bf56ea1ff354c8a2
6
+ metadata.gz: da4a08d92ab64858294421f6edef1a3250e5d0d4b4470c27c256506f36781d29861e036b3ff018d5a97d605739b897247e0030d6eba5585d922869b1e40c7bd6
7
+ data.tar.gz: 6d344e5dbac4cedd94abc099f6c3259db530bcd410eb5838954034e6e942901abf5a12039a985d4f287a20079c316a786db6bcc4ce7bc6e5930617f15ca0cfef
data/README.md CHANGED
@@ -22,7 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  The Json.create method defines a JSON object
24
24
 
25
- out = OutStream::Json.create do
25
+ out = Outstream::Json.create do
26
26
  ...
27
27
  end
28
28
  # use out.to_s or out.each to product result
@@ -9,11 +9,11 @@ module Outstream
9
9
  #
10
10
  # Example:
11
11
  # Outstream::Json.create do
12
- # add string: "hello", number: 42
13
- # add array: [1,2,3]
14
- # add "nested_object" {
15
- # add "foo" => "bar"
16
- # }
12
+ # add string: "hello", number: 42
13
+ # add array: [1,2,3]
14
+ # add "nested_object" {
15
+ # add "foo" => "bar"
16
+ # }
17
17
  # end
18
18
  def self.create(&body_block)
19
19
  new body_block
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: outstream-json
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Calhoun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-13 00:00:00.000000000 Z
11
+ date: 2016-02-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: A library which provides a DSL for writing a large number of object as
14
- json without building the entire set in memory first.
13
+ description: A library which provides a means for writing a large number of object
14
+ as json without building the entire set in memory first.
15
15
  email:
16
16
  - ryanjamescalhoun@gmail.com
17
17
  executables: []
@@ -24,7 +24,7 @@ files:
24
24
  - lib/outstream-json.rb
25
25
  - lib/outstream/json.rb
26
26
  - test/test_json.rb
27
- homepage: https://github.com/ryanjamescalhoun/outstream-json
27
+ homepage: https://github.com/ryancalhoun/outstream-json
28
28
  licenses:
29
29
  - MIT
30
30
  metadata: {}