busser-serverspec 0.5.5 → 0.5.6

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: 6ca3deda331ef87f0734d6d160e33144c628424b
4
- data.tar.gz: e9bfada40be75ab511322608c5f28dfd970e5165
3
+ metadata.gz: 04aa37c8604414aa8c455c755f2cba2725954f22
4
+ data.tar.gz: ad21ff7f5925008169ffdc69d315b7a5a07de56d
5
5
  SHA512:
6
- metadata.gz: 064c26f9ed0d621693cf1e7ab890e4cc1c8070d27b260cb65ff50f713208117b6a8b2d482e2f1b92d9fe0b08a42ecf7799b279763f5462e3dd9351e67ce5d862
7
- data.tar.gz: 77192918a18aefed28d0a74c1a035969e1caf86ba844af07e994e056689d34772ccff34836c34880f85508cc12ce4ede41f9c3468db0a8001a6215fb3fd0d3af
6
+ metadata.gz: d5dfb3966775caa566b90a847e45c35f7dc010c5fee8878413795a3141cc537f03338d7c93ada2abfe9d6466ab8799ebdf4ec613322dfe26760022b3845f7b14
7
+ data.tar.gz: 84097892070d37891a8a32a67830fc0df357733205b0cd4d344dd5a2331a63999dbc831484214ebed2ee6daf8578044f100eab5d9a2dd08177615558e8c12358
@@ -1,3 +1,8 @@
1
+ ## 0.5.6 / 2015-04-27
2
+
3
+ * Run bundle with explicit path to ruby bin, closes #27
4
+ merge pull-req by Simon Detheridge <simon@widgit.com>, thanks.
5
+
1
6
  ## 0.5.5 / 2015-04-02
2
7
 
3
8
  * use File::PATH_SEPARATOR to join ENV PATH. closes #24
@@ -47,7 +47,8 @@ class Busser::RunnerPlugin::Serverspec < Busser::RunnerPlugin::Base
47
47
  # the fallback to the internet-enabled version. It's a speed optimization.
48
48
  banner('Bundle Installing..')
49
49
  ENV['PATH'] = [ENV['PATH'], Gem.bindir, Config::CONFIG['bindir']].join(File::PATH_SEPARATOR)
50
- bundle_exec = "bundle install --gemfile #{gemfile_path}"
50
+ bundle_exec = "#{File.join(Config::CONFIG['bindir'], 'ruby')} " +
51
+ "#{File.join(Gem.bindir, 'bundle')} install --gemfile #{gemfile_path}"
51
52
  run("#{bundle_exec} --local || #{bundle_exec}")
52
53
  end
53
54
  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.5'
24
+ VERSION = '0.5.6'
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.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - HIGUCHI Daisuke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-01 00:00:00.000000000 Z
11
+ date: 2015-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: busser