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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: deca1cde3f951cfa7c5cd6ce74636234f742341b
4
- data.tar.gz: 6f26c99bcdca42ebf909103cfb85b3aaf2f88a35
3
+ metadata.gz: 9daf807788dd1ef2811576f6d86b971479596221
4
+ data.tar.gz: cf80041edac85c5049009d747d065f8dbab7980c
5
5
  SHA512:
6
- metadata.gz: 088dd8ff267e14d86737252ed62166294174de31d99cf0a2165c0a6193e8bd08b2fe82b9807b814cc20f1ac30b145afd630d93e647ffaa6acdebb44842686fd2
7
- data.tar.gz: 295389cd5ec9e59108477b428aa3dd8af61813041cc2792a1371f71c8ee18bce7e332f853ace5ed84af2c797ba5d0ac6d53d89578b59bd36ef155950bfb622db
6
+ metadata.gz: 86f023e1d72607861c356daaf069a1ba784137a173f8615a371ea9c4de09c2630154b5db42e1116ae36e9c48ffa6e105541f8a147bc19bc36a2c698b2c723248
7
+ data.tar.gz: 3e2e89981203051b7e88a7010d309a00a56dce93221586f6783160800b57e48a34d22daa222f20743a6f25ea3e8a7f2792c3c875cf5d2302accb8df9de223448
data/.cane CHANGED
@@ -0,0 +1 @@
1
+ --style-measure 100
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.5.4 / 2015-03-30
2
+
3
+ * add the config bindir as well.
4
+ merge pull-req by Noah Kantrowitz <noah@coderanger.net>. thanks.
5
+
1
6
  ## 0.5.3 / 2014-10-17
2
7
 
3
8
  * make private working methods, closes #18
@@ -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
@@ -21,6 +21,6 @@ module Busser
21
21
  module Serverspec
22
22
 
23
23
  # Version string for the Serverspec Busser runner plugin
24
- VERSION = '0.5.3'
24
+ VERSION = '0.5.4'
25
25
  end
26
26
  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.3
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: 2014-10-17 00:00:00.000000000 Z
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.2.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: