sparkle_formation 1.1.4 → 1.1.6
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/sparkle_formation/sparkle_formation.rb +2 -2
- data/lib/sparkle_formation/version.rb +1 -1
- data/sparkle_formation.gemspec +1 -1
- metadata +13 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8c8435e87b4a778f623d62924a0e04ce2d12984
|
|
4
|
+
data.tar.gz: 8d6ccfaad6cbb84f3e73a3a25f48a12f27d0d4a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24eabd02e9e856165565d27e0fcb6b68ff4a1ff4b48d5f364e7709451892bf1923877cdb14b8c72bb6ea5e5b15effdbb62a681abd962f720897c74006f2c98a3
|
|
7
|
+
data.tar.gz: a1aaadb1b5237ab15c31e341833cc1cf701597a8bbb8ed0dd277e5955ec3428d54c79718eb5b69465f395281139610a9a413962cdfdd91bcec9ab3f862d5d79c
|
data/CHANGELOG.md
CHANGED
|
@@ -267,7 +267,7 @@ class SparkleFormation
|
|
|
267
267
|
value = _config[key] if key
|
|
268
268
|
if(value)
|
|
269
269
|
if(value.is_a?(Proc))
|
|
270
|
-
properties
|
|
270
|
+
properties.set!(prop_name, &value)
|
|
271
271
|
else
|
|
272
272
|
properties.set!(prop_name, value)
|
|
273
273
|
end
|
|
@@ -735,7 +735,7 @@ class SparkleFormation
|
|
|
735
735
|
end
|
|
736
736
|
]
|
|
737
737
|
if(compile.outputs)
|
|
738
|
-
compile._merge(
|
|
738
|
+
compile._merge(compile._klass_new(outputs_hash))
|
|
739
739
|
else
|
|
740
740
|
compile.outputs output_hash
|
|
741
741
|
end
|
data/sparkle_formation.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.description = 'Ruby DSL for programmatic orchestration API template generation'
|
|
11
11
|
s.license = 'Apache-2.0'
|
|
12
12
|
s.require_path = 'lib'
|
|
13
|
-
s.add_dependency 'attribute_struct', '
|
|
13
|
+
s.add_dependency 'attribute_struct', '>= 0.2.23', '< 0.4'
|
|
14
14
|
s.add_dependency 'multi_json'
|
|
15
15
|
s.add_dependency 'bogo'
|
|
16
16
|
s.add_development_dependency 'minitest'
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sparkle_formation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Roberts
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: attribute_struct
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.2.23
|
|
20
|
+
- - "<"
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
22
|
+
version: '0.4'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 0.2.23
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
32
|
+
version: '0.4'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: multi_json
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -135,3 +141,4 @@ signing_key:
|
|
|
135
141
|
specification_version: 4
|
|
136
142
|
summary: Orchestration Template Generator
|
|
137
143
|
test_files: []
|
|
144
|
+
has_rdoc:
|