busser-serverspec 0.5.6 → 0.5.7

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: 04aa37c8604414aa8c455c755f2cba2725954f22
4
- data.tar.gz: ad21ff7f5925008169ffdc69d315b7a5a07de56d
3
+ metadata.gz: 8c9230d4e824b355b02f7f1bf372a68c72726549
4
+ data.tar.gz: b3e9dd60ccc7f280aece66c297d1f459d8573fa8
5
5
  SHA512:
6
- metadata.gz: d5dfb3966775caa566b90a847e45c35f7dc010c5fee8878413795a3141cc537f03338d7c93ada2abfe9d6466ab8799ebdf4ec613322dfe26760022b3845f7b14
7
- data.tar.gz: 84097892070d37891a8a32a67830fc0df357733205b0cd4d344dd5a2331a63999dbc831484214ebed2ee6daf8578044f100eab5d9a2dd08177615558e8c12358
6
+ metadata.gz: cb5392ccb5c164f90dff11d7f618c1a5f5e0d33700221629dfb6a6208da0e520365bec0bea3832df201a4efbb9b21d298b3b1e964acfd269abfe0b055f39cca3
7
+ data.tar.gz: 5da3d96402537f8f69325c6a24c06414a2c42befab8076e0a92736ef10f79e5e0f766149001af7d664b9a948b18d7785ba6cd17f149fff02a52de50c74a1fc6e
@@ -1,3 +1,8 @@
1
+ ## 0.5.7 / 2015-06-01
2
+
3
+ * use RbConfig instead of obsolete and deprecated Config, closes #29
4
+ suggested by Jörg Herzinger <joerg.herzinger@oiml.at>, thanks.
5
+
1
6
  ## 0.5.6 / 2015-04-27
2
7
 
3
8
  * Run bundle with explicit path to ruby bin, closes #27
@@ -46,8 +46,8 @@ 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(File::PATH_SEPARATOR)
50
- bundle_exec = "#{File.join(Config::CONFIG['bindir'], 'ruby')} " +
49
+ ENV['PATH'] = [ENV['PATH'], Gem.bindir, RbConfig::CONFIG['bindir']].join(File::PATH_SEPARATOR)
50
+ bundle_exec = "#{File.join(RbConfig::CONFIG['bindir'], 'ruby')} " +
51
51
  "#{File.join(Gem.bindir, 'bundle')} install --gemfile #{gemfile_path}"
52
52
  run("#{bundle_exec} --local || #{bundle_exec}")
53
53
  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.6'
24
+ VERSION = '0.5.7'
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.6
4
+ version: 0.5.7
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-27 00:00:00.000000000 Z
11
+ date: 2015-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: busser
@@ -203,4 +203,3 @@ test_files:
203
203
  - features/plugin_list_command.feature
204
204
  - features/support/env.rb
205
205
  - features/test_command.feature
206
- has_rdoc: