simp-beaker-helpers 1.10.10 → 1.10.11
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 +9 -2
- data/Rakefile +1 -0
- data/lib/simp/beaker_helpers/version.rb +1 -1
- data/simp-beaker-helpers.gemspec +2 -3
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 500fd48e811328ef517392a2a27d5ae69bd4659d7299f0c3bc3359520fcdb9a4
|
|
4
|
+
data.tar.gz: 403501b1ad5fb7ad7c29ed0b1dfd280dc6777c7b7368e78ca44226724e7eff51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3196b545ccb9b78fbe6984f21d0c53c7609379c40e736c68500d0f9dffe016aebac33a53592a36d778c40d449fbc6c466c605bde3e6e30d80a2037f8c8e6ae68
|
|
7
|
+
data.tar.gz: b283d5f0d969dae510dfe05a5b10c0edf3a9b508dc2287d2e936882101dbc7b5cbad74aed877cd1ab649b2577696fa0d1ff560d4dff48f5f15013d9aff7eefe5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
-
### 1.10.
|
|
1
|
+
### 1.10.11 / 2018-06-25
|
|
2
|
+
* Pinned `fog-openstack` to `0.1.25` for all releases due to dropping support
|
|
3
|
+
for Ruby 1.9 in `0.1.26`. This should be removed once we drop support for
|
|
4
|
+
Ruby 1.9 (late October 2018)
|
|
5
|
+
* Added removal of `.vendor` directory which was preventing successful
|
|
6
|
+
deployment status in Travis CI
|
|
7
|
+
|
|
8
|
+
### 1.10.10 / 2018-06-22
|
|
2
9
|
* Version bump due to being released without a git tag
|
|
3
10
|
|
|
4
11
|
### 1.10.9 / 2018-06-22
|
|
5
12
|
* Ensure that the SSG is built from the latest tag instead of master
|
|
6
13
|
* Provide the option to pass a specific branch to the SSG builds
|
|
7
14
|
* Pin the suite base directory off of the global base directory instead of
|
|
8
|
-
local to wherever the system
|
|
15
|
+
local to wherever the system happens to be at the time.
|
|
9
16
|
|
|
10
17
|
### 1.10.8 / 2018-05-18
|
|
11
18
|
* New env var BEAKER_no_fix_interfaces, set to skip the fix that brings up all
|
data/Rakefile
CHANGED
data/simp-beaker-helpers.gemspec
CHANGED
|
@@ -24,9 +24,8 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.add_runtime_dependency 'highline', '~> 1.6'
|
|
25
25
|
|
|
26
26
|
# Because fog-opensack dropped support for Ruby < 2.2.0
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
end
|
|
27
|
+
# TODO: Update this when we no longer support Ruby 1.9 (should be October 2018)
|
|
28
|
+
s.add_runtime_dependency 'fog-openstack', '0.1.25'
|
|
30
29
|
|
|
31
30
|
### s.files = Dir['Rakefile', '{bin,lib,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z .`.split("\0")
|
|
32
31
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simp-beaker-helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Tessmer
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-06-
|
|
12
|
+
date: 2018-06-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: beaker
|
|
@@ -67,6 +67,20 @@ dependencies:
|
|
|
67
67
|
- - "~>"
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
69
|
version: '1.6'
|
|
70
|
+
- !ruby/object:Gem::Dependency
|
|
71
|
+
name: fog-openstack
|
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - '='
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: 0.1.25
|
|
77
|
+
type: :runtime
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - '='
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: 0.1.25
|
|
70
84
|
description: |2
|
|
71
85
|
Beaker helper methods to help scaffold SIMP acceptance tests
|
|
72
86
|
email: simp@simp-project.org
|