dataMetaProtobuf 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 091be0378d3394410e5d9bd5a4747083a63b8083
4
- data.tar.gz: c34ba9da421151b2c3fda17d654db24045a311f7
3
+ metadata.gz: d7c541b0e13336786d8b3bca0ceeb00935449144
4
+ data.tar.gz: 5698b0ef6af304a245ca506ef8b1f9966c6d069d
5
5
  SHA512:
6
- metadata.gz: 732ba6ee73997abb8db2092912b659fddcddd013d7ff842a6fb89afe689cbd47f8466be69dece2e9945b1e1913fb7578751ddd7845479b1965cea032503f454e
7
- data.tar.gz: f93506ea7441ad5742803559588ba6f46122bcd052704e0bb10a25dc9f64d28b8824e245a379efb7e0e2bde69650dc916694585c129bce8af5ad831ad002c9ee
6
+ metadata.gz: c1f906241b26331399e19d05a5c272568db807bc7eaf9ffb6a32e417a1596dbb1eebacc37fd4ac0d6e6a75e6fc59257ae7a6f29df029630be7b19c9b177aa6f0
7
+ data.tar.gz: d901cf6dea9ca507dd810ae95aeb687244e0e69d6c5c21135b5c0021b97e6aa50bc2772cbe87587039fbf09876fdfd6ebea78f3c5783dd999c74d6435d966c26
data/History.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # `dataMetaProtobuf` Release history:
2
2
 
3
+ ## `1.0.1` - `2017-02-20 Mon` by [`mub`](https://github.com/mub)
4
+ * Update:
5
+ * Bug fix: extraneous output to STDOUT
6
+
3
7
  ## `1.0.0` released `2017-02-19 Sun`
4
8
  * 1 major enhancement:
5
9
  * Initial release
data/README.md CHANGED
@@ -33,9 +33,7 @@ Since DataMeta DOM is superset of Protobuf data types, tradeoffs are made:
33
33
 
34
34
  Usage:
35
35
 
36
- Pipe your DataMeta DOM source to:
37
-
38
- dataMetaProtobufGen.rb
36
+ dataMetaProtobufGen.rb <DataMeta DOM source file name>
39
37
 
40
38
  It will output your Protobuf IDL to STDOUT and write the log file named `dataMetaProtobuf.log` in which you may find
41
39
  some useful information about what just happened. This log is written into the current directory.
@@ -13,7 +13,6 @@ DataMetaProtobuf.helpProtobufGen __FILE__, %<"#{@source}" is not a valid file> u
13
13
  @model = DataMetaDom::Model.new
14
14
  begin
15
15
  @model.parse(@source)
16
- puts "Current source: #{@model.sources.inspect}"
17
16
  puts DataMetaProtobuf.genSchema(@model)
18
17
  rescue Exception => e
19
18
  $stderr.puts "ERROR #{e.message}; #{@model.diagn}"
@@ -17,7 +17,7 @@ For command line details either check the new method's source or the README, the
17
17
 
18
18
  module DataMetaProtobuf
19
19
  # Current version
20
- VERSION = '1.0.0'
20
+ VERSION = '1.0.1'
21
21
 
22
22
  # First level indent
23
23
  INDENT = ' ' * 4
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dataMetaProtobuf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bergens