boxci 0.0.31 → 0.0.32

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: 961796b04b8beab12bf98867cd6d0fa1a370c18c
4
- data.tar.gz: 56c6d1acaddbc9fe4ba1282147254aa0ab2ebcc9
3
+ metadata.gz: 1b1d456bdd627be3796a9c7af9724710c63ec4e8
4
+ data.tar.gz: 325efc85366988512045e09c0385d44a527f229e
5
5
  SHA512:
6
- metadata.gz: fb2739530a44a7e99c8744b12443a3f5462427c58ce47dfb52e91f2b19c738f959ffd2787c05940a8aa501967de9ecc249a77f53a74914efee38f1ad4edc7c3c
7
- data.tar.gz: 84a558ec5653a00f1c95d0c580498fc32aa42d359a5c0916ce44a87adba07e2d9b5b3faf451d2710a3c21414d16af638679ecb0a05e6e2f690b79bdd64894179
6
+ metadata.gz: d4f494e6903765561d4a9350beed2adb4214eb8d90ab91c348a3506c35ba67d37eef6be90aa6494b10296d150fb4947f51c0e0b8e2c31ec90d57c303c0920ec2
7
+ data.tar.gz: 90344c2b93929ccacbc39e2515d156f1d13f9237617088c2799b772a00f44f7e6dd53f32440efb1699953e473f96789573872d24ebcd2a155bdd820c0015a839
data/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ versions as well as provide a rough history.
6
6
 
7
7
  #### Next Release
8
8
 
9
+ #### v0.0.32
10
+
11
+ - It should now add dummy boxes for various providers.
12
+
13
+ #### v0.0.31
14
+
9
15
  - Fix issue #31 so that it auto installs vagrant plugins without prompting the
10
16
  user. This will allow it to work in non-interactive environments like other
11
17
  CI systems (Bamboo, etc.)
data/lib/boxci/tester.rb CHANGED
@@ -150,12 +150,6 @@ module Boxci
150
150
  def add_provider_box
151
151
  dummy_box_url = @provider_object.dummy_box_url
152
152
  if dummy_box_url
153
- if run "curl --output /dev/null --silent --head --fail #{dummy_box_url}"
154
- say "Using specified VM Box URL", :green
155
- else
156
- say "Could not resolve the Box URL: #{dummy_box_url}", :red
157
- end
158
- else
159
153
  inside @project_workspace_folder do
160
154
  # check for box
161
155
  if !system("vagrant box list | grep dummy | grep -q \"(#{provider})\"")
data/lib/boxci/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Boxci
2
- VERSION = "0.0.31"
2
+ VERSION = "0.0.32"
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.31
4
+ version: 0.0.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew De Ponte