busser-serverspec 0.5.4 → 0.5.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9daf807788dd1ef2811576f6d86b971479596221
4
- data.tar.gz: cf80041edac85c5049009d747d065f8dbab7980c
3
+ metadata.gz: 6ca3deda331ef87f0734d6d160e33144c628424b
4
+ data.tar.gz: e9bfada40be75ab511322608c5f28dfd970e5165
5
5
  SHA512:
6
- metadata.gz: 86f023e1d72607861c356daaf069a1ba784137a173f8615a371ea9c4de09c2630154b5db42e1116ae36e9c48ffa6e105541f8a147bc19bc36a2c698b2c723248
7
- data.tar.gz: 3e2e89981203051b7e88a7010d309a00a56dce93221586f6783160800b57e48a34d22daa222f20743a6f25ea3e8a7f2792c3c875cf5d2302accb8df9de223448
6
+ metadata.gz: 064c26f9ed0d621693cf1e7ab890e4cc1c8070d27b260cb65ff50f713208117b6a8b2d482e2f1b92d9fe0b08a42ecf7799b279763f5462e3dd9351e67ce5d862
7
+ data.tar.gz: 77192918a18aefed28d0a74c1a035969e1caf86ba844af07e994e056689d34772ccff34836c34880f85508cc12ce4ede41f9c3468db0a8001a6215fb3fd0d3af
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.5.5 / 2015-04-02
2
+
3
+ * use File::PATH_SEPARATOR to join ENV PATH. closes #24
4
+ suggested by Jacob McCann <jmccann.git@gmail.com>, thanks.
5
+
1
6
  ## 0.5.4 / 2015-03-30
2
7
 
3
8
  * add the config bindir as well.
@@ -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, Config::CONFIG['bindir']].join(':')
49
+ ENV['PATH'] = [ENV['PATH'], Gem.bindir, Config::CONFIG['bindir']].join(File::PATH_SEPARATOR)
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.4'
24
+ VERSION = '0.5.5'
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.4
4
+ version: 0.5.5
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-03-30 00:00:00.000000000 Z
11
+ date: 2015-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: busser