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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/outstream/json.rb +5 -5
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f930b16d521d2755bfe9d6d7d2991f9462dc9966
|
4
|
+
data.tar.gz: 860c74f446317f9f211f1e5108446dec9f0dfe53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da4a08d92ab64858294421f6edef1a3250e5d0d4b4470c27c256506f36781d29861e036b3ff018d5a97d605739b897247e0030d6eba5585d922869b1e40c7bd6
|
7
|
+
data.tar.gz: 6d344e5dbac4cedd94abc099f6c3259db530bcd410eb5838954034e6e942901abf5a12039a985d4f287a20079c316a786db6bcc4ce7bc6e5930617f15ca0cfef
|
data/README.md
CHANGED
data/lib/outstream/json.rb
CHANGED
@@ -9,11 +9,11 @@ module Outstream
|
|
9
9
|
#
|
10
10
|
# Example:
|
11
11
|
# Outstream::Json.create do
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
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.
|
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-
|
11
|
+
date: 2016-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: A library which provides a
|
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/
|
27
|
+
homepage: https://github.com/ryancalhoun/outstream-json
|
28
28
|
licenses:
|
29
29
|
- MIT
|
30
30
|
metadata: {}
|