jsondoc 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +3 -0
  3. data/README.rdoc +2 -2
  4. data/VERSION +1 -1
  5. data/jsondoc.gemspec +2 -2
  6. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d667ff1f9ee92a1c9423f8c3b53df0693b30c19
4
- data.tar.gz: e43d87d1e0bcc58910994324eec90b83e6837318
3
+ metadata.gz: ca4466650ed76801d4ebe0f4761b2ca4dac71a40
4
+ data.tar.gz: ff506a4d784eea2ed81ed0e1bba730ecfec43a47
5
5
  SHA512:
6
- metadata.gz: d37da726b1e38bc70ed25faedb63a30de58ab92cffffdd38200f69fb8907d3d6e146a6cf1c51935854f1e427aa9bd9da2dfc92ccfe7da6f54ef6a9838f68413c
7
- data.tar.gz: c07f374ba8c987565f4d707070b829173370c08ed18aafb50c62d892bb7211de51f817f2658082ef67cd23add042c65e53ae25065157dfecb0d1cd2a3ebe24ff
6
+ metadata.gz: 50362e8f0f9e3e594232c5e7a47e9854d2209024d3cf0b022d6f31d721eb9e32d6a31e4744b97fbf878f9369fb16f1c2bd90ea6ecc66999b29f5cf78f6b68da0
7
+ data.tar.gz: 9bf554caa53803fffd2611c2f389fa8ca4d1bd15622dc60f85c3e5e46fd2e0669fa0173e6a142c7633fae54584d6ec8726acc1a25d84a2a0769cba445bae4492
data/CHANGELOG CHANGED
@@ -1,2 +1,5 @@
1
+ = 0.0.2
2
+ - README bugfix
3
+
1
4
  = 0.0.1
2
5
  - Initial release
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
1
+ 0.0.2
data/jsondoc.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'jsondoc'
3
- s.version = '0.0.1'
4
- s.date = '2014-01-28'
3
+ s.version = '0.0.2'
4
+ s.date = '2014-01-31'
5
5
  s.summary = 'JsonDoc'
6
6
  s.description = 'A base document object'
7
7
  s.authors = ['John Wang']
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.1
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-28 00:00:00.000000000 Z
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