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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc4160dad391ef84442f0f2da57489f314f2319473cd33e522dbf2ecba69bfa4
4
- data.tar.gz: ff51909b2fd3b63efb156db43e5a32607fcd5e242ff5ca5c031ccb9723c157cc
3
+ metadata.gz: 500fd48e811328ef517392a2a27d5ae69bd4659d7299f0c3bc3359520fcdb9a4
4
+ data.tar.gz: 403501b1ad5fb7ad7c29ed0b1dfd280dc6777c7b7368e78ca44226724e7eff51
5
5
  SHA512:
6
- metadata.gz: 95b05a6e35b47b05efe576ef3f1207ad4bdcca7dc77b05bdfbd024233205df1354f97ad9a7885cce1a0993b5b851fdba209886d67060bd4e1e1efd35143641d2
7
- data.tar.gz: 3a5db4c8571c0b40e3f6e7b4f251ff2849c5bdaa9e8062501755e1a4c36ecd7a5dff8d833258901dd9431fef163f812db38dd38c62eed70990bd9ab5c3abe012
6
+ metadata.gz: 3196b545ccb9b78fbe6984f21d0c53c7609379c40e736c68500d0f9dffe016aebac33a53592a36d778c40d449fbc6c466c605bde3e6e30d80a2037f8c8e6ae68
7
+ data.tar.gz: b283d5f0d969dae510dfe05a5b10c0edf3a9b508dc2287d2e936882101dbc7b5cbad74aed877cd1ab649b2577696fa0d1ff560d4dff48f5f15013d9aff7eefe5
data/CHANGELOG.md CHANGED
@@ -1,11 +1,18 @@
1
- ### 1.10.10/ 2018-06-22
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 happenes to be at the time.
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
@@ -19,6 +19,7 @@ end
19
19
  CLEAN.include "#{@package}-*.gem"
20
20
  CLEAN.include 'pkg'
21
21
  CLEAN.include 'dist'
22
+ CLEAN.include '.vendor'
22
23
  Find.find( @rakefile_dir ) do |path|
23
24
  if File.directory? path
24
25
  CLEAN.include path if File.basename(path) == 'tmp'
@@ -1,5 +1,5 @@
1
1
  module Simp; end
2
2
 
3
3
  module Simp::BeakerHelpers
4
- VERSION = '1.10.10'
4
+ VERSION = '1.10.11'
5
5
  end
@@ -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
- if RUBY_VERSION <= '2.2.0'
28
- s.add_runtime_dependency 'fog-openstack', '0.1.25'
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.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-23 00:00:00.000000000 Z
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