vagrant-cloudstack 0.6.0 → 0.7.0

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: 9369e8798fdd548b1f4a6de5a29d5e4507a08137
4
- data.tar.gz: 38209b67315ca3b2b3b06b96bf5e5fed1b368642
3
+ metadata.gz: 1b01a67b4a7935d8218e0fd82422bd38dc5dc0c9
4
+ data.tar.gz: bc847f6a39372eb7ab370bc811974a63c3e36af1
5
5
  SHA512:
6
- metadata.gz: d54f3cc4bf1413a199945b84b4a0713023ca2a51323e0ad799eda47098529273d54ab647e3153fceed6507a1010ef5ec07d74b5f80844b60ded4aeda3b8bde38
7
- data.tar.gz: 9624a75d8910020a7c30bc5d370d0ec9d3bf634ba70407f9bc78b336c34079f6fcd194be7a641309064d6e651b7663be103672e9419b8b4af22f65c8b05a8090
6
+ metadata.gz: 0b6ca31291fc783ed3abc0ef42573af04563d8b77db8f9366973e94f3186a651feddd3d8218ef459449fe5135370ff4b1519d0dd1f2db00dc06328ab5618df7c
7
+ data.tar.gz: 9190c62333d247ec463b79a7b8645378e1afa23d83a62599fc8b2c6b9cee6c4a71a95e1de8bb7688ebb9b520c81bb21b3d1b5f1ee5f662bf0482c71ad41a61cc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.7.0 (Jun 17, 2014)
2
+ * Change the resolution order of how we discover the scheme to talk to the cloud.
3
+ This is a possibly breaking change.
4
+
1
5
  # 0.6.0 (May 13, 2014)
2
6
 
3
7
  * Bump the Ruby version to 2.0.0-p481
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Build Status](https://travis-ci.org/klarna/vagrant-cloudstack.png?branch=master)](https://travis-ci.org/klarna/vagrant-cloudstack)
4
4
  [![Gem Version](https://badge.fury.io/rb/vagrant-cloudstack.png)](http://badge.fury.io/rb/vagrant-cloudstack)
5
5
  [![Dependency Status](https://gemnasium.com/klarna/vagrant-cloudstack.png)](https://gemnasium.com/klarna/vagrant-cloudstack)
6
- [![Code climate](https://codeclimate.com/github/klarna/vagrant-cloudstack.png)](https://codeclimate.com/github/klarna/vagrant-cloudstac)
6
+ [![Code climate](https://codeclimate.com/github/klarna/vagrant-cloudstack.png)](https://codeclimate.com/github/klarna/vagrant-cloudstack)
7
7
  [![Coverage Status](https://coveralls.io/repos/klarna/vagrant-cloudstack/badge.png)](https://coveralls.io/r/klarna/vagrant-cloudstack)
8
8
 
9
9
  This is a fork of [mitchellh AWS Provider](https://github.com/mitchellh/vagrant-aws/).
data/build_rpm.sh CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/bin/bash
2
- VERSION=0.6.0
2
+ VERSION=0.7.0
3
3
  mkdir -p /tmp/vagrant-cloudstack-build_rpm.$$/vagrant-cloudstack-$VERSION
4
4
  cp -r . /tmp/vagrant-cloudstack-build_rpm.$$/vagrant-cloudstack-$VERSION/
5
5
  tar -C /tmp/vagrant-cloudstack-build_rpm.$$/ -czf ~/rpmbuild/SOURCES/vagrant-cloudstack-$VERSION.tar.gz vagrant-cloudstack-$VERSION
@@ -234,8 +234,9 @@ module VagrantPlugins
234
234
  # Port must be nil, since we can't default that
235
235
  @port = nil if @port == UNSET_VALUE
236
236
 
237
- # Scheme is 'http' by default
238
- @scheme = "http" if @scheme == UNSET_VALUE
237
+ # We default the scheme to whatever the user has specifid in the .fog file
238
+ # *OR* whatever is default for the provider in the fog library
239
+ @scheme = nil if @scheme == UNSET_VALUE
239
240
 
240
241
  # Try to get access keys from environment variables, they will
241
242
  # default to nil if the environment variables are not present
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Cloudstack
3
- VERSION = "0.6.0"
3
+ VERSION = "0.7.0"
4
4
  end
5
5
  end
@@ -21,7 +21,7 @@ describe VagrantPlugins::Cloudstack::Config do
21
21
  its("host") { should be_nil }
22
22
  its("path") { should be_nil }
23
23
  its("port") { should be_nil }
24
- its("scheme") { should == "http" }
24
+ its("scheme") { should be_nil }
25
25
  its("api_key") { should be_nil }
26
26
  its("secret_key") { should be_nil }
27
27
  its("instance_ready_timeout") { should == 120 }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-cloudstack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto
@@ -18,7 +18,7 @@ authors:
18
18
  autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
- date: 2014-05-13 00:00:00.000000000 Z
21
+ date: 2014-06-17 00:00:00.000000000 Z
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
24
24
  name: fog