ctpl 0.0.2 → 0.0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/thor/generate.thor +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ee51a8056fde574fcc7a22ff4e7aeb9eb3730908334e0e7a222f910a7685747
4
- data.tar.gz: 25281e9e3b8a1004f461766967bb29d69d685b32cf2993b47bed60a4cfcb8399
3
+ metadata.gz: ca1add0374408646f0aaa0943a09d89cc42f7c1734c977bdc9e67338187c41ee
4
+ data.tar.gz: 8f55ec0a9dafd96ecc33941eebae30cd05a88baeafc698fa25a6373275abe83e
5
5
  SHA512:
6
- metadata.gz: 1c82f83eb192d755f1e163f8496656fe66296d6beb417cab3199e1dbf42c9c1787aeef58ebcbcf4cfc9126bc339365932855fc74a25acc56b8a7d2c44064710e
7
- data.tar.gz: e26e82779279461766811cb0ed6a949c88df80f38501e23eacebf9a81540d9a9b2976612dd4986495e4bd2cabfc499f959c235bc3fbac8a8fb88027bc70d778f
6
+ metadata.gz: 0fb07c7c4b0150653c7ed5887b36fd5343a846ff5039454504001e95454dd85665dacaab1dbc4fcd5e4b465355b1f40a2d6b08ac0939c009d6d6ae541565b7a0
7
+ data.tar.gz: 9636e71ce1e6bd8373974185dd0c5695a2028376a53f090376881fa445d818eb3107835701b7baa221c1bb8d31ec9ddbb6fca34459563101f095f43730928c41
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -6,8 +6,8 @@ module Ctpl
6
6
  class_option :verbose, :type => :boolean, :aliases => '-v', :default => false, :banner => 'Activate verbose mode', :desc => 'If used show errors, stacktraces and more'
7
7
 
8
8
  desc 'generate', 'Handle all marked instances, either to install or install'
9
- method_option :basefolder, :aliases => 'b', :required => false, :type => :string, :default => './', :desc => "Optional - defaults to ./pipeline, falls back to PWD. The base-folder the pipeline.yaml, alias.yaml and the partials are located. \nIf you pass /tmp/foo we will look for /tmp/foo/pipeline.yaml, optionally for /tmp/foo/aliases.yaml and all /tmp/foo/*_.yaml files as partials"
10
- method_option :output, :aliases => 'o', :required => false, :type => :string, :default => './pipeline.yml', :desc => "Optional, defaults to pipeline.yml. Output path to save the merged yaml in"
9
+ method_option :basefolder, :aliases => 'b', :required => false, :type => :string, :default => './pipeline', :desc => "Optional - defaults to ./pipeline, falls back to PWD. The base-folder the pipeline.yaml, alias.yaml and the partials are located. \nIf you pass /tmp/foo we will look for /tmp/foo/pipeline.yaml, optionally for /tmp/foo/aliases.yaml and all /tmp/foo/*_.yaml files as partials"
10
+ method_option :output, :aliases => 'o', :required => false, :type => :string, :default => './pipeline.yaml', :desc => "Optional, defaults to pipeline.yaml. Output path to save the merged yaml in"
11
11
  def generate
12
12
  baseFolder = options[:basefolder]
13
13
  merger = PipelineMerger.new("#{baseFolder}/pipeline.yaml", "#{baseFolder}/aliases.yaml", baseFolder)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ctpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eugen Mayer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-23 00:00:00.000000000 Z
11
+ date: 2018-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor