busser-serverspec 0.5.3 → 0.5.4
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/.cane +1 -0
- data/CHANGELOG.md +5 -0
- data/lib/busser/runner_plugin/serverspec.rb +1 -1
- data/lib/busser/serverspec/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9daf807788dd1ef2811576f6d86b971479596221
|
|
4
|
+
data.tar.gz: cf80041edac85c5049009d747d065f8dbab7980c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86f023e1d72607861c356daaf069a1ba784137a173f8615a371ea9c4de09c2630154b5db42e1116ae36e9c48ffa6e105541f8a147bc19bc36a2c698b2c723248
|
|
7
|
+
data.tar.gz: 3e2e89981203051b7e88a7010d309a00a56dce93221586f6783160800b57e48a34d22daa222f20743a6f25ea3e8a7f2792c3c875cf5d2302accb8df9de223448
|
data/.cane
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--style-measure 100
|
data/CHANGELOG.md
CHANGED
|
@@ -46,7 +46,7 @@ class Busser::RunnerPlugin::Serverspec < Busser::RunnerPlugin::Base
|
|
|
46
46
|
# locally it fails if it needs to talk to the internet. The || below is
|
|
47
47
|
# the fallback to the internet-enabled version. It's a speed optimization.
|
|
48
48
|
banner('Bundle Installing..')
|
|
49
|
-
ENV['PATH'] = [ENV['PATH'], Gem.bindir].join(':')
|
|
49
|
+
ENV['PATH'] = [ENV['PATH'], Gem.bindir, Config::CONFIG['bindir']].join(':')
|
|
50
50
|
bundle_exec = "bundle install --gemfile #{gemfile_path}"
|
|
51
51
|
run("#{bundle_exec} --local || #{bundle_exec}")
|
|
52
52
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: busser-serverspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- HIGUCHI Daisuke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: busser
|
|
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
194
194
|
version: '0'
|
|
195
195
|
requirements: []
|
|
196
196
|
rubyforge_project:
|
|
197
|
-
rubygems_version: 2.
|
|
197
|
+
rubygems_version: 2.4.4
|
|
198
198
|
signing_key:
|
|
199
199
|
specification_version: 4
|
|
200
200
|
summary: A Busser runner plugin for Serverspec
|
|
@@ -203,3 +203,4 @@ test_files:
|
|
|
203
203
|
- features/plugin_list_command.feature
|
|
204
204
|
- features/support/env.rb
|
|
205
205
|
- features/test_command.feature
|
|
206
|
+
has_rdoc:
|