jsondoc 0.0.1 → 0.0.2
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/CHANGELOG +3 -0
- data/README.rdoc +2 -2
- data/VERSION +1 -1
- data/jsondoc.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca4466650ed76801d4ebe0f4761b2ca4dac71a40
|
|
4
|
+
data.tar.gz: ff506a4d784eea2ed81ed0e1bba730ecfec43a47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50362e8f0f9e3e594232c5e7a47e9854d2209024d3cf0b022d6f31d721eb9e32d6a31e4744b97fbf878f9369fb16f1c2bd90ea6ecc66999b29f5cf78f6b68da0
|
|
7
|
+
data.tar.gz: 9bf554caa53803fffd2611c2f389fa8ca4d1bd15622dc60f85c3e5e46fd2e0669fa0173e6a142c7633fae54584d6ec8726acc1a25d84a2a0769cba445bae4492
|
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
= JsonDoc
|
|
2
2
|
|
|
3
|
-
Generic JSON document base class to set/get document attributes based on JSON Schema, dump as JSON and support building of CSV and Excel workbooks. Subclasses can be built with additional functionality using the setAttr method. Primary use cases include being used with parsers to create JSON documents and to create CSV/Excel reports.
|
|
3
|
+
Generic JSON document base class to set/get document attributes based on JSON Schema, dump as JSON and support building of CSV and Excel workbooks. Subclasses can be built with additional functionality, e.g. using the setAttr method. Primary use cases include being used with parsers to create JSON documents and to create CSV/Excel reports.
|
|
4
4
|
|
|
5
5
|
== Installation
|
|
6
6
|
|
|
@@ -23,7 +23,7 @@ Download and install jsondoc with the following:
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
thisUser = JsonDoc.new( mySchema )
|
|
26
|
+
thisUser = JsonDoc::Document.new( mySchema )
|
|
27
27
|
thisUser.setAttr( :first_name, 'John' )
|
|
28
28
|
thisUser.setAttr( :last_name, 'Doe' )
|
|
29
29
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/jsondoc.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jsondoc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Wang
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A base document object
|
|
14
14
|
email: john@johnwang.com
|