boxci 0.0.35 → 0.0.36

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2bb76f1b84f8c9a1d6732820b4d1ac29bb4fa7ac
4
- data.tar.gz: cf45a1053b411c0c268c7ca4f41fada6d4e7a417
3
+ metadata.gz: 84e661cf01c31229dc620f079e0aa25f6b326896
4
+ data.tar.gz: 7825e3a9b747d14ae42f4022535fb11e3e80d02c
5
5
  SHA512:
6
- metadata.gz: 8d10103a27a7c5d2ee3a8f927ec329c890947cef22f45babdad98263f704ac1037b25d7530293d1ac370c6a0d35f695446328f1953e8976fe1883f3e633687ca
7
- data.tar.gz: 0b138e117b64de7cc6cd5007a276f317ebfbf3432660d5d06e3791ccd12160f04ee091a2b431858e915bba439f91fe099189b59d72939986acab4c4f6b86f6c2
6
+ metadata.gz: 82e80eb6e40c69376e38c12d8341015804bb14332da029a12affaca3d1cbac50f32c456876fd1752765143b4eac2aaa36dbdf1a6481f2c8b4ea37c33c4edbcef
7
+ data.tar.gz: 028da3757df04c794693b799b85eb08489addeb09b5a1e022146993ad24cbb48545358cb6815a001ac7f00d5baadfe9759f7371c2659a29566853cd8cbe27140
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ versions as well as provide a rough history.
6
6
 
7
7
  #### Next Release
8
8
 
9
+ #### v0.0.36
10
+
11
+ - Fixed command success detection so it actually works properly.
12
+
9
13
  #### v0.0.35
10
14
 
11
15
  - Added command success detection and debugging in hopes to better identify
data/lib/boxci/tester.rb CHANGED
@@ -172,9 +172,9 @@ module Boxci
172
172
  def spin_up_box
173
173
  inside @project_workspace_folder do
174
174
  if verbose?
175
- run "VAGRANT_LOG=debug vagrant up --no-provision --provider #{provider}", :verbose => verbose?
175
+ return run "vagrant up --no-provision --provider #{provider}", :verbose => verbose?
176
176
  else
177
- run "vagrant up --no-provision --provider #{provider}"
177
+ return run "vagrant up --no-provision --provider #{provider}"
178
178
  end
179
179
  end
180
180
  end
@@ -182,9 +182,9 @@ module Boxci
182
182
  def setup_ssh_config
183
183
  inside @project_workspace_folder do
184
184
  if verbose?
185
- run "VAGRANT_LOG=debug vagrant ssh-config > ssh-config.local", :verbose => verbose?
185
+ return run "vagrant ssh-config > ssh-config.local", :verbose => verbose?
186
186
  else
187
- run "vagrant ssh-config > ssh-config.local"
187
+ return run "vagrant ssh-config > ssh-config.local"
188
188
  end
189
189
  end
190
190
  end
data/lib/boxci/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Boxci
2
- VERSION = "0.0.35"
2
+ VERSION = "0.0.36"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxci
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.35
4
+ version: 0.0.36
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew De Ponte