barking_iguana-compound 0.1.13 → 0.1.14

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: 7df2da3b4b3d3000a4422d8618b047e2dfb137fc
4
- data.tar.gz: 00c8d48c4fd1184bd3f0bdafa06b48ad924b0dca
3
+ metadata.gz: 19a95aca5869b74517a69c1b1b49967fa244cbca
4
+ data.tar.gz: d94eb86d12e6c7ac362f1dd711cd2c8548ca2dd5
5
5
  SHA512:
6
- metadata.gz: a1ef32c692a9374aee2994b00a044f4f2395df976b51a989eb4a21bda390c3b9e5e77e94b4b3099292e8747ab32be6fa6032c9d0a651c2d00f6622bdc07307b1
7
- data.tar.gz: 20794f393a275992dfc8e810f3845277925d81488ba2b724540fba8a7f7ac06af17efcfb1e9aa10b5112a948e09682c161b4c8875a1caad57295ccd5cc579f17
6
+ metadata.gz: 122efd677eeb565461646b6c7586481704fc6274cd2fb58367d0f4daae7f20f313f298c57c57fde68ea8523ed827e187f3a38b75f8bae79e78bc3b9a0ebd72db
7
+ data.tar.gz: e70bce8a86fe0f16b49ced02e1ea087cbd8517f8f2769a7b5dd6f7f92ab99aa9688122ea32853d5bdd223fa43ed61f13d499560b2217e02092d04928e8343f72
data/docs/CHANGELOG.md CHANGED
@@ -2,10 +2,15 @@
2
2
 
3
3
  Entries are in reverse chronological order.
4
4
 
5
- ## *0.1.14* (Current Development)
5
+ ## *0.1.15* (Current Development)
6
6
 
7
7
  * ...
8
8
 
9
+ ## *0.1.14* (2017-05-26)
10
+
11
+ * Bug fix: the path to Vagrant isn't always `/usr/local/bin`. Remove the
12
+ hard coding and rely on $PATH. [#1]
13
+
9
14
  ## *0.1.13* (2017-02-23)
10
15
 
11
16
  * Bug fix: `reject!` won't always return the `Hash`. We need to return
@@ -34,7 +34,7 @@ module BarkingIguana
34
34
  logger.debug { "COMMAND: #{command.inspect}, PASSED_ARGS: #{passed_args.inspect}, ALWAYS_ARGS: #{always_args.inspect}" }
35
35
  merged_args = ([always_args] + passed_args).flatten.join(' ').strip
36
36
  logger.debug { "MERGED ARGS: #{merged_args.inspect}" }
37
- command_line = "/usr/local/bin/vagrant #{command} #{merged_args}".strip
37
+ command_line = "vagrant #{command} #{merged_args}".strip
38
38
  logger.debug { "COMMAND LINE: #{command_line.inspect}" }
39
39
  logger.debug { "COMMAND ENV: #{environment.inspect}" }
40
40
  c = Mixlib::ShellOut.new command_line, cwd: root, env: environment.to_h, live_stream: logger
@@ -1,5 +1,5 @@
1
1
  module BarkingIguana
2
2
  module Compound
3
- VERSION = "0.1.13"
3
+ VERSION = "0.1.14"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: barking_iguana-compound
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig R Webster
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-02-23 00:00:00.000000000 Z
11
+ date: 2017-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -250,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
250
250
  version: '0'
251
251
  requirements: []
252
252
  rubyforge_project:
253
- rubygems_version: 2.5.2
253
+ rubygems_version: 2.4.5.1
254
254
  signing_key:
255
255
  specification_version: 4
256
256
  summary: Compound testing of Ansible playbooks