sparkle-guides 0.1.6 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1f04bb4a6026891d6f8c468a1c6e880238605994
4
- data.tar.gz: b8f10b89284f3390ec13ea9e648be1f33ff5765f
3
+ metadata.gz: f57bc3d80b1b61ec0105a17b6069e7b475263ee5
4
+ data.tar.gz: 644eba0d8359c0403ef1d95c0ff178958f080da1
5
5
  SHA512:
6
- metadata.gz: 609346d36b4974a68eab22b9c0b308ab9e2a5efc7f7dde88ea31e580cab963c63f073bf46b302fbfd731644ad49cd2acccb083d6722844fb192d95836f82cd3f
7
- data.tar.gz: 58fd492797e2c62431f922dd68671b40b995a2e70ca94a0001dcbc2488c2c0853cf6319178225ce536b60131117c8b130cff6a03bb4067bacfb3021a0e879850
6
+ metadata.gz: f02ed7483baa914469ace3cce797ab3874d7752adadd29eed6ff4c88afb1aa162b65f5c28f703b9d00f6889aac1570705ba61e66e459009d44b2f952c867e963
7
+ data.tar.gz: 4a733b6851d217f79f4765fad2fb4a65023d625accc50aaf3206bd8b9c31606f07d41af2d4406a71333ec5e643ef961693d97c1f23d96a661c08bcae089ec4e5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v0.1.8
2
+ * Update non-default type files with provider flag
3
+
1
4
  # v0.1.6
2
5
  * Fixes for syntax, instructions, and removal of m1 types (#8)
3
6
  * Thanks @rberger!
@@ -341,14 +341,14 @@ end
341
341
  #### Registry sparkles HEAT
342
342
 
343
343
  ~~~ruby
344
- SfnRegistry.register(:instance_flavor) do
344
+ SfnRegistry.register(:instance_flavor, :provider => :heat) do
345
345
  ['m1.small', 'm1.medium']
346
346
  end
347
347
  ~~~
348
348
 
349
349
  #### Registry sparkles Azure
350
350
  ~~~ruby
351
- SfnRegistry.register(:instance_flavor) do
351
+ SfnRegistry.register(:instance_flavor, :provider => :azure) do
352
352
  ['Standard_D1']
353
353
  end
354
354
  ~~~
@@ -375,7 +375,7 @@ end
375
375
  #### Component sparkles HEAT
376
376
 
377
377
  ~~~ruby
378
- SparkleFormation.component(:base) do
378
+ SparkleFormation.component(:base, :provider => :heat) do
379
379
  heat_template_version '2015-04-30'
380
380
  description 'Sparkle Guide Compute Template'
381
381
  end
@@ -384,7 +384,7 @@ end
384
384
  #### Component sparkles Azure
385
385
 
386
386
  ~~~ruby
387
- SparkleFormation.component(:base) do
387
+ SparkleFormation.component(:base, :provider => :azure) do
388
388
  set!('$schema', 'https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#')
389
389
  content_version '1.0.0.0'
390
390
  end
@@ -435,7 +435,7 @@ end
435
435
  #### Dynamic sparkles HEAT
436
436
 
437
437
  ~~~ruby
438
- SparkleFormation.dynamic(:node) do |name, opts={}|
438
+ SparkleFormation.dynamic(:node, :provider => :heat) do |name, opts={}|
439
439
 
440
440
  parameters do
441
441
  set!("#{name}_image_id".to_sym).type 'String'
@@ -466,7 +466,7 @@ end
466
466
  #### Dynamic sparkles Azure
467
467
 
468
468
  ~~~~ruby
469
- SparkleFormation.dynamic(:node) do |name, opts={}|
469
+ SparkleFormation.dynamic(:node, :provider => :azure) do |name, opts={}|
470
470
  parameters do
471
471
  set!("#{name}_image_id".to_sym) do
472
472
  type 'string'
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'sparkle-guides'
3
- s.version = '0.1.6'
3
+ s.version = '0.1.8'
4
4
  s.summary = 'SparkleFormation Guides'
5
5
  s.author = 'Chris Roberts'
6
6
  s.email = 'chrisroberts.code@gmail.com'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sparkle-guides
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-20 00:00:00.000000000 Z
11
+ date: 2016-04-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: SparkleFormation Usage Guides
14
14
  email: chrisroberts.code@gmail.com