stackup 1.5.0 → 1.5.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 +4 -4
- data/CHANGES.md +4 -0
- data/README.md +2 -2
- data/lib/stackup/source.rb +1 -1
- data/lib/stackup/version.rb +1 -1
- data/spec/stackup/source_spec.rb +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a60dfe3184679f98c43d28590feadf40faa968bf5b75531951510d96d38a02f
|
|
4
|
+
data.tar.gz: ab5010d36407547ba7c1f5b09e190c776023303227b72881ea80b2b49a41b717
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf63917e39f450c29d98e420f872aa5f1d7bd00fbd2543eece6d81795ec64ec349e66ba507230e212d30961a390a8a9f587c0dc45e08b823c78c518f700425ff
|
|
7
|
+
data.tar.gz: 15a86e361a985ca59c7714025fa47308a4e165b5abdf2f0bf8e3020d13a73636e219a6693b208f6d51e4fed8aa28587e7dbd1dda03a654d471a8a432ca4e4632
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
|
@@ -307,11 +307,11 @@ The release process will push tags to GitHub, push the gem to rubygems and push
|
|
|
307
307
|
Prerequisites:
|
|
308
308
|
|
|
309
309
|
* logged into dockerhub via `docker login`. Your user must have permission to push to `realestate/stackup`
|
|
310
|
-
*
|
|
310
|
+
* You must have a rubygems account with permission to push to the `stackup` gem. (`auto/release` will ask for your username and password)
|
|
311
|
+
* You must have cloned this repo via HTTPS and have a github account with permission to push. (`auto/release` will ask for your username and a GitHub personal access token)
|
|
311
312
|
|
|
312
313
|
To release:
|
|
313
314
|
|
|
314
315
|
```
|
|
315
|
-
bundle install
|
|
316
316
|
auto/release
|
|
317
317
|
```
|
data/lib/stackup/source.rb
CHANGED
data/lib/stackup/version.rb
CHANGED
data/spec/stackup/source_spec.rb
CHANGED
|
@@ -124,6 +124,16 @@ describe Stackup::Source do
|
|
|
124
124
|
|
|
125
125
|
end
|
|
126
126
|
|
|
127
|
+
context "with dot separated bucket and region" do
|
|
128
|
+
|
|
129
|
+
let(:s3_url) { "https://bucket.s3.us-east-1.amazonaws.com/cfn/template.yml" }
|
|
130
|
+
|
|
131
|
+
it "is S3" do
|
|
132
|
+
expect(subject).to be_s3
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
end
|
|
136
|
+
|
|
127
137
|
end
|
|
128
138
|
|
|
129
139
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stackup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Williams
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-
|
|
12
|
+
date: 2020-11-18 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: aws-sdk-cloudformation
|