cloudspin-stack 0.1.22 → 0.1.23

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: 59627a946d24d3bbf4d6cbd026670f1679cb1ebb
4
- data.tar.gz: 0f9495a259ae7eff0f25ec6d4de1eca250d592f7
3
+ metadata.gz: 0c245dc74c8d8d967b7a3d5ec76b22deccebc5c8
4
+ data.tar.gz: 39880631f030c0b54ae7e88b319c720fd62525db
5
5
  SHA512:
6
- metadata.gz: a0a5c2df90337b85aa8006b1d013ae7ff9795a4249887c28d55134897afe6fce1f7905bd2af1675b6c464fcccf0388a1bd3bda43b4d956b9bdcb4a050b2f63fa
7
- data.tar.gz: b2fe3a4e898e610aa42e937f5bd24d2bd3c1661303cf345804ab832ddab93e666ae6933025d04ce39067534941db45120ba220fc7ca77708716d93864590e9eb
6
+ metadata.gz: 454e99a7a97d671c79176f594638aa80a74d351c31249a5d80f17cce5bf116eda679131df33dbdbd65a72fcbba4fb8ccf1a240c1d80a98e9a49e3ee1b45d8be3
7
+ data.tar.gz: d8a4bd4cc85b996e8f85df5f036a3fb5a39f6d11ef93ac3888bd374cd2bb64b0c6cc8b624d44b1031ff9656339beef320e9f548bc55979fc9cc367dc93bb6a5f
@@ -8,11 +8,10 @@ module Cloudspin
8
8
  attr_reader :version
9
9
  attr_reader :source_path
10
10
 
11
- def initialize(source_path:, stack_name:, stack_version: '0', github_tag: false)
11
+ def initialize(source_path:, stack_name:, stack_version: '0')
12
12
  @source_path = source_path
13
13
  @name = stack_name
14
14
  @version = stack_version
15
- @github_tag = !github_tag.nil? && (github_tag || /^(true|yes|1)$/i.match(github_tag))
16
15
  end
17
16
 
18
17
  def self.from_file(specfile)
@@ -22,8 +21,7 @@ module Cloudspin
22
21
  self.new(
23
22
  source_path: source_path,
24
23
  stack_name: spec_hash.dig('stack', 'name'),
25
- stack_version: spec_hash.dig('stack', 'version'),
26
- github_tag: spec_hash.dig('stack', 'github_tag')
24
+ stack_version: spec_hash.dig('stack', 'version')
27
25
  )
28
26
  end
29
27
 
@@ -31,10 +29,6 @@ module Cloudspin
31
29
  from_file("#{definition_folder}/stack-definition.yaml")
32
30
  end
33
31
 
34
- def github_tag?
35
- @github_tag
36
- end
37
-
38
32
  end
39
33
 
40
34
 
@@ -1,5 +1,5 @@
1
1
  module Cloudspin
2
2
  module Stack
3
- VERSION = '0.1.22'
3
+ VERSION = '0.1.23'
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.22
4
+ version: 0.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - 'kief '