busser-serverspec 0.5.8 → 0.5.9
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.
Potentially problematic release.
This version of busser-serverspec might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +6 -1
- data/lib/busser/runner_plugin/serverspec.rb +1 -1
- data/lib/busser/serverspec/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b2ba56167600b9a9f662b73232f53e878b035f2
|
|
4
|
+
data.tar.gz: 42280e4d1e5ae9ecc5c712f402c2e70fd51c75e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fae86202cabca02e5d7353a84d2f0a0044e0f2a57c4917d2008c8c10deeae90c8415fd5985cafbcea9c6c4be4cc09fddf6cba556481fb6ae4355d0d964792398
|
|
7
|
+
data.tar.gz: 8cfd6b2ade47636a74919a220d834a098d418e3295892e66f06ea90681da1679243492ffb618379efafd26a58c009cb659532d8fe87abb49871037ffba499b93
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
## 0.
|
|
1
|
+
## 0.5.9 2016-01-22
|
|
2
|
+
|
|
3
|
+
* Fix frozen string issue when checking Ruby version
|
|
4
|
+
merge pull-req by Joe Friedl <jfriedl@digitalocean.com>, thanks.
|
|
5
|
+
|
|
6
|
+
## 0.5.8 / 2016-01-22, 0.6.0 / 2016-01-18 (yanked 2016-02-22)
|
|
2
7
|
|
|
3
8
|
* Install net-ssh < 2.10 for ruby < 2.0.
|
|
4
9
|
merge pull-req by Bill Ruddock <bill.ruddock@gmail.com>, thanks.
|
|
@@ -56,7 +56,7 @@ class Busser::RunnerPlugin::Serverspec < Busser::RunnerPlugin::Base
|
|
|
56
56
|
def install_serverspec
|
|
57
57
|
Gem::Specification.reset
|
|
58
58
|
if Array(Gem::Specification.find_all_by_name('serverspec')).size == 0
|
|
59
|
-
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.0')
|
|
59
|
+
if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new('2.0')
|
|
60
60
|
banner('Installing net-ssh < 2.10')
|
|
61
61
|
install_gem('net-ssh', '< 2.10')
|
|
62
62
|
end
|