sparkle_formation 3.0.6 → 3.0.8

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: c208713600c2e3752fac5186c34ceac179d49945
4
- data.tar.gz: 6efa2b513ddcf06cf45ff34a7d1be7b040a7ae98
3
+ metadata.gz: deaa6b7da46ae88dcba062ee3df4d468be7a8e56
4
+ data.tar.gz: 700b8caca311813f985504dea424afab13830be1
5
5
  SHA512:
6
- metadata.gz: e532f430c28776f23b00dc059a087f2e0ee149a88d44c25bae1863e623c61409c5bd8ba246f62e4d2e4462cc20698921f95cf855dff776f953fe1640f42b9daf
7
- data.tar.gz: 26a00bd06a16fe6c883b475f2bbd01dda14f5f2409bf4bd548c7f1570c769ef746374cb8063fb663c973e40802198446852b02f82aa4b7e7a5cb9ad6a4f5faca
6
+ metadata.gz: 24ad0bae5ef5eab81dc929cc9bcb2c4218f84b2164aa58ae9a28130ee8b47f83ac8bd5132f003a48e6a3a6e00d4b25c8449bb426fea5dc62efbfb988d02146f4
7
+ data.tar.gz: 1ca2fc7fe01f0730429cb433671187bc4bfd6490cde84abd7b9dd75a9457334b746828b36d8ca93093b7c3583ad67fe4cab956d2563f69819569410a5617fbb4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v3.0.8
2
+ * Fix pack loading on Windows (#178)
3
+
1
4
  # v3.0.6
2
5
  * Update builtin provider resource lists
3
6
 
data/docs/anatomy.md CHANGED
@@ -202,4 +202,4 @@ SparkleFormation.new(:template) do
202
202
  end
203
203
  ~~~
204
204
 
205
- * [Outputs](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resources-section-structure.html)
205
+ * [Outputs](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html)
@@ -11,6 +11,8 @@ anchors:
11
11
  url: "#layout"
12
12
  - title: "Usage"
13
13
  url: "#usage"
14
+ - title: "Distribution"
15
+ url: "#distribution
14
16
  ---
15
17
 
16
18
  ## SparklePacks
@@ -137,7 +137,9 @@ class SparkleFormation
137
137
  item.end_with?("`register!'")
138
138
  end
139
139
  idx = idx ? idx.next : 0
140
- file = caller[idx].split(':', 2).first
140
+ # Trim from the end to determine path allowing windows paths
141
+ # to not be improperly truncated
142
+ file = caller[idx].split(':').reverse.drop(2).reverse.join(':')
141
143
  path = File.join(File.dirname(file), 'sparkleformation')
142
144
  unless(File.directory?(path))
143
145
  path = nil
@@ -1,5 +1,5 @@
1
1
  # Unicorns and rainbows
2
2
  class SparkleFormation
3
3
  # Current library version
4
- VERSION = Gem::Version.new('3.0.6')
4
+ VERSION = Gem::Version.new('3.0.8')
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sparkle_formation
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.6
4
+ version: 3.0.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-06-08 00:00:00.000000000 Z
11
+ date: 2016-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: attribute_struct