lono-pro 0.4.2 → 0.4.3

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
  SHA256:
3
- metadata.gz: 146c0ab939081b40292f52bf762c1438ff140874eeefaad6eb598db8c6cd92b2
4
- data.tar.gz: 80af069936676ba050e7becd9e9baba059f3c42292a824619ccfdace24ec5dcf
3
+ metadata.gz: 25d1098d139e6863d3d05a7b2d85f45abe4b279879b9b86d58cbe32dc16714ac
4
+ data.tar.gz: e7dd2a832ad1d8f2eeac6e4180ade9c8afc4a329a61e8fa2b1a95be4b7fa441a
5
5
  SHA512:
6
- metadata.gz: dae187e53c12c56d41c1faa17dc606b6a379ce1e700473158fef4215bd54607f450d890d31b268abbf3d6ce227af64df1eb03b72229e602228b55a75707967ad
7
- data.tar.gz: cf57dbd4e847fd14f2af96856a405d4529261584d2b206dc91ada3e41f7eabd0ecb8b828561661f1437c7c81d4cf5b4b7f7bb9b3b82aa5b671120dda7fb7a1e8
6
+ metadata.gz: d1cee0d57d3d71d5ec8643623845e8704d4437ad3db6de5f1cc280cab782df9e4b7b9bc4230b3606d615ceb30ee59ee746383cd70e504701eeebe86f13b3ae5b
7
+ data.tar.gz: 5b86c6a7a699aded52015c221242fc8419f6f140d18980fd36c84f2972f260bb85f0d9d7f8f1b42ea645fb85ac6c1c1c0569acbc6d2f9e6684e4abc38b382c58
data/CHANGELOG.md CHANGED
@@ -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
+ ## [0.4.3]
7
+ - update cli help
8
+
6
9
  ## [0.4.2]
7
10
  - note lono-pro addon commands
8
11
 
data/lib/lono/pro/code.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Lono::Pro
2
2
  class Code < Lono::Command
3
- desc "import SOURCE", "Imports CloudFormation template and converts it to different lono formats."
3
+ desc "import SOURCE", "Imports CloudFormation template and converts it to Ruby code."
4
4
  long_desc Help.text("code/import")
5
5
  option :blueprint, default: nil, desc: "final blueprint name"
6
6
  option :casing, default: "as-is", desc: "Controls casing of logical ids. IE: as-is, camelcase or underscore"
@@ -12,7 +12,7 @@ module Lono::Pro
12
12
  Importer.new(source, options).run
13
13
  end
14
14
 
15
- desc "convert SOURCE", "Converts snippet of YAML to lono dsl format."
15
+ desc "convert SOURCE", "Converts snippet of JSON or YAML CloudFormation templates to Ruby code."
16
16
  long_desc Help.text("code/convert")
17
17
  option :casing, default: "as-is", desc: "Controls casing of logical ids. IE: as-is, camelcase or underscore"
18
18
  def convert(source)
@@ -1,5 +1,5 @@
1
1
  module Lono
2
2
  module Pro
3
- VERSION = "0.4.2"
3
+ VERSION = "0.4.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lono-pro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen