lono-params 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 48f4fd8fe7ad6f4664421809e114a8fbc9734d48
4
- data.tar.gz: d1170aaa995527f61e670fd93f208eec34564551
3
+ metadata.gz: 4bffc7a56c741defa4a0c8111fc5c0d1f5b832e6
4
+ data.tar.gz: b520b01470e433b2b74a3acaa0ecbf386a886c8c
5
5
  SHA512:
6
- metadata.gz: 3672cbc3b3b4bf45fb0941d55dfc3609fbfe4dbbd5f1dc52b34876d7417d163ef70d78543fd1ece76c92eb7ded439090f9b0ec6b530284265b09ababe1775402
7
- data.tar.gz: e4facbcc2899ff9c08231d8aeda8c72f96e4269c77761fe334b9b6f90b921e6980b1540999c9a67849a623079b440cec5764e36012ff5b0215245c12ed94adf0
6
+ metadata.gz: f9af2f3772167202fe42a967ca7f9632de54907756538c137e56e239856e041fad829e7e545b4998f7a2d9cd64cc1bc2a41e8db7ed34ba8546e7fd30d0a09e50
7
+ data.tar.gz: 0057c07c2ba9ea2d6fe83b6522eeb1cc19a799d9bb9a01a22a459993ca24e1e39138d2497a198d51615363ad6b9adeea59fb8a1c908b1c92788cd3dba8f0fc3b
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [1.0.1]
7
+ - expose mute option
8
+
6
9
  ## [1.0.0]
7
10
  - allow --help or -h at the end of the command
8
11
  - rename lono_params -> lono-params
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lono-params (1.0.0)
4
+ lono-params (1.0.1)
5
5
  colorize
6
6
  hashie
7
7
  json
@@ -7,6 +7,7 @@ module LonoParams
7
7
  class CLI < Command
8
8
  class_option :verbose, type: :boolean
9
9
  class_option :noop, type: :boolean
10
+ class_option :mute, type: :boolean
10
11
  class_option :project_root, desc: "project root to use", default: '.'
11
12
 
12
13
  desc "generate NAME", "generate parameter json file for NAME"
@@ -72,7 +72,6 @@ module LonoParams
72
72
  end
73
73
 
74
74
  def write_output(json)
75
- puts "output_path #{output_path.inspect}"
76
75
  dir = File.dirname(output_path)
77
76
  FileUtils.mkdir_p(dir) unless File.exist?(dir)
78
77
  IO.write(output_path, json)
@@ -1,3 +1,3 @@
1
1
  module LonoParams
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lono-params
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
  - Tung Nguyen