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 +4 -4
- data/docs/CHANGELOG.md +6 -1
- data/lib/barking_iguana/compound/vagrant.rb +1 -1
- data/lib/barking_iguana/compound/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19a95aca5869b74517a69c1b1b49967fa244cbca
|
4
|
+
data.tar.gz: d94eb86d12e6c7ac362f1dd711cd2c8548ca2dd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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 = "
|
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
|
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.
|
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-
|
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.
|
253
|
+
rubygems_version: 2.4.5.1
|
254
254
|
signing_key:
|
255
255
|
specification_version: 4
|
256
256
|
summary: Compound testing of Ansible playbooks
|