cloudspin-stack 0.1.0 → 0.1.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: cf756315ab21b587af5f59a2f58dbaa64320d995
4
- data.tar.gz: 16cadbe8df1eababb41735756e3c7ad6bad381c0
3
+ metadata.gz: 0c99dae60e8a47326028b008d91b9da077ea0859
4
+ data.tar.gz: 6f57facf4f429c9544a5ab86a330bcc27e5112b9
5
5
  SHA512:
6
- metadata.gz: d35a1aef9f7455f2613abba656d0e54b9460fda0c49000bfd97277a6b101edc78f6e62ebf6bf652eced3c5c13d76ccb4419c51df0529cffddd9cd5cc72659f64
7
- data.tar.gz: 687660fcd803a2b4cbd84d63ab7840270470c4d731998cd3d78e3edc50c6d74a61d2ab43c985854c6a5dbc1a5241b5dd45a095767338526f7ebb4e18a87ba0b0
6
+ metadata.gz: 8a296b870b6f2a0dc28229568689c2600836dc1c522b2768b9ac1c3758924e12fde8cc89ffbbbcaea25fdc991ef75ef7e8b687a05d4171ed5843c91cf8d43063
7
+ data.tar.gz: 1ddcc1e10f512e408ca6746bb399cfd2bec8606895ddbb10bbc10223f7a2ece75c6c7aecb1bdaba51cfe40536a0b542ae11ebb09e4904cec6ebbbdb2ba02b766
data/lib/cloudspin/cli.rb CHANGED
@@ -4,21 +4,25 @@ require 'cloudspin/stack'
4
4
  module Cloudspin
5
5
  class CLI < Thor
6
6
 
7
+ class_option :file
8
+
7
9
  desc 'plan', 'Print the changes that will by applied when the \'stack up\' command is run'
8
10
  def plan
11
+ puts "Get configuration from #{options[:file]}" if options[:file]
9
12
  instance.plan
10
13
  end
11
14
 
12
15
  no_commands do
16
+
13
17
  def instance
14
18
  Cloudspin::Stack::Instance.new(
15
19
  stack_definition: stack_definition,
16
20
  backend_config: {},
17
21
  working_folder: working_folder,
18
- statefile_folder: statefile_folder,
19
- parameter_values: parameter_values,
20
- resource_values: resource_values
22
+ statefile_folder: statefile_folder
21
23
  )
24
+ # parameter_values: parameter_values
25
+ # resource_values: resource_values
22
26
  end
23
27
 
24
28
  def stack_definition
@@ -1,5 +1,5 @@
1
1
  module Cloudspin
2
2
  module Stack
3
- VERSION = "0.1.0"
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudspin-stack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - 'kief '