vagrant-cloudstack 1.4.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/.travis.yml +13 -9
  4. data/CHANGELOG.md +30 -0
  5. data/Docker/Dockerfile +5 -8
  6. data/Docker/Dockerfile.chefdk_0_17 +2 -2
  7. data/Docker/Dockerfile.latest_dependencies +2 -2
  8. data/Docker/README.md +63 -35
  9. data/Gemfile +2 -2
  10. data/Gemfile.lock +307 -0
  11. data/README.md +3 -3
  12. data/Rakefile +2 -2
  13. data/build_rpm.sh +1 -1
  14. data/functional-tests/rsync/Vagrantfile.advanced_networking +1 -0
  15. data/functional-tests/vmlifecycle/Vagrantfile.advanced_networking +5 -7
  16. data/functional-tests/vmlifecycle/vmlifecycle_spec.rb +14 -2
  17. data/lib/vagrant-cloudstack/action/read_rdp_info.rb +9 -43
  18. data/lib/vagrant-cloudstack/action/read_ssh_info.rb +10 -44
  19. data/lib/vagrant-cloudstack/action/read_transport_info.rb +59 -0
  20. data/lib/vagrant-cloudstack/action/read_winrm_info.rb +10 -44
  21. data/lib/vagrant-cloudstack/action/run_instance.rb +607 -498
  22. data/lib/vagrant-cloudstack/action/terminate_instance.rb +17 -41
  23. data/lib/vagrant-cloudstack/config.rb +41 -166
  24. data/lib/vagrant-cloudstack/exceptions/exceptions.rb +7 -2
  25. data/lib/vagrant-cloudstack/service/cloudstack_resource_service.rb +17 -5
  26. data/lib/vagrant-cloudstack/version.rb +1 -1
  27. data/spec/spec_helper.rb +45 -0
  28. data/spec/vagrant-cloudstack/action/retrieve_public_ip_port_spec.rb +94 -0
  29. data/spec/vagrant-cloudstack/action/run_instance_spec.rb +609 -0
  30. data/spec/vagrant-cloudstack/action/terminate_instance_spec.rb +248 -0
  31. data/spec/vagrant-cloudstack/config_spec.rb +7 -7
  32. data/vagrant-cloudstack.gemspec +2 -1
  33. metadata +22 -10
  34. data/bootstrap.key +0 -27
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2897e7ad4d58dd6fd8f8039521e7677050bece61
4
- data.tar.gz: 3f816c2f823f1dbd4f3f3b0fc6832ee5218dae0c
3
+ metadata.gz: e1c0585709e420785d3f2f51517b9177294ab7a3
4
+ data.tar.gz: 9d88ad81410bc2bc7ceaaa1fa1a885cd84d6c1fd
5
5
  SHA512:
6
- metadata.gz: 13af100eb8ca7cdc17ed0728f7ff39aaa0b1624f838eee1935381169f9490f435dc9d2dfbe2e205eced73d5f0107879de3e21e0b3b59ae97e6273334d4007d33
7
- data.tar.gz: 2c7c37a1e79b5ce728ccb1e42d3e013e0922500ec7d9d7fc7d8895478e5792a9a4c67abed3e6b3dc382a0a2714deba00b4357fb5f21f18539ae4565b4bd658bc
6
+ metadata.gz: fa65b1b4d8d41cbd642f045b2d7c5d9c7194d6ae6c9b26a2481582194a809767690e93c28c90763ebebe6ea9943274ad758b3b595b4b7ce6223658ea79b19e76
7
+ data.tar.gz: f469bedc64c4eae5f68444e4a40628acb4955d7fa0e4d1ba47dc6594ee0b609614c6ddea78cdfccddb1f18638f6e8dd2087ba37977f76f96c0299658ef3c8e6f
data/.gitignore CHANGED
@@ -6,7 +6,6 @@
6
6
  .bundle
7
7
  pkg/*
8
8
  tags
9
- Gemfile.lock
10
9
 
11
10
  # Vagrant
12
11
  .vagrant
data/.travis.yml CHANGED
@@ -1,16 +1,20 @@
1
1
  language: ruby
2
+
3
+ rvm:
4
+ - 2.3
5
+
6
+ cache: apt
7
+
8
+ addons:
9
+ apt:
10
+ packages:
11
+ bsdtar
12
+
13
+ script: bundle exec rake
14
+
2
15
  notifications:
3
16
  email:
4
17
  - int-toolkit@schubergphilis.com
5
- before_install:
6
- - sudo apt-get update -qq
7
- - sudo apt-get install -qq -y bsdtar
8
- - rvm @global do gem uninstall bundler -a -x
9
- - rvm @global do gem install bundler -v 1.10.6
10
- rvm:
11
- - 2.0.0
12
- script: rake
13
- notifications:
14
18
  webhooks:
15
19
  urls:
16
20
  - https://webhooks.gitter.im/e/83f6eebe81bad15857f4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ # 1.5.0 (17 Oct 2018)
2
+
3
+ **Implemented enhancements:**
4
+
5
+ - Provide human readable error when `sync_resource` cannot sync name-\>id [\#163](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/163)
6
+ - Deduplicate code in read\_\[ssh|winrm|rdp\]\_info [\#150](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/150)
7
+ - CloudStack acquire Public IP address [\#87](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/87)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Make vagrant-cloudstack able to run in \(Docker\) container [\#157](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/157)
12
+
13
+ **Closed issues:**
14
+
15
+ - Write Code Once [\#172](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/172)
16
+ - Template name used is mis-reported [\#56](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/56)
17
+
18
+ **Merged pull requests:**
19
+
20
+ - Fix the travis setup. [\#179](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/179) ([greut](https://github.com/greut))
21
+ - Update Vagrant to 2.0.3, unbork bundler. [\#178](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/178) ([greut](https://github.com/greut))
22
+ - Add testing for different scenarios for basic zone implementation [\#176](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/176) ([bheuvel](https://github.com/bheuvel))
23
+ - Refactoring of run\_instance, config and added testing [\#175](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/175) ([bheuvel](https://github.com/bheuvel))
24
+ - Unit testing covering a \(most\) basic VM deployment [\#174](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/174) ([bheuvel](https://github.com/bheuvel))
25
+ - Refactor read info classes using a super class [\#173](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/173) ([bheuvel](https://github.com/bheuvel))
26
+ - Improve error message/handling [\#170](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/170) ([bheuvel](https://github.com/bheuvel))
27
+ - Don't set network\_ids when using basic networking [\#168](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/168) ([hrak](https://github.com/hrak))
28
+ - Pin kitchen-vagrant and vagrant-winrm [\#167](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/167) ([bheuvel](https://github.com/bheuvel))
29
+ - Fix user dependency [\#165](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/165) ([bheuvel](https://github.com/bheuvel))
30
+
1
31
  # 1.4.0 (Nov 30, 2016)
2
32
  * Support multiple network ids and network names (PR #148)
3
33
  * Add ssh_network_id and ssh_network_name configuration (PR #149)
data/Docker/Dockerfile CHANGED
@@ -3,14 +3,11 @@ FROM debian:8
3
3
  MAINTAINER Bob van den Heuvel <bvandenheuvel@schubergphilis.com>
4
4
 
5
5
  # Specific older chef-dk required due to bundler version, only available as Debian 6 package
6
- ENV CHEFDK_VERSION 0.10.0
7
- ENV CHEFDK_DEB_VERSION 6
6
+ ENV CHEFDK_VERSION 1.2.22
7
+ ENV CHEFDK_DEB_VERSION 8
8
8
 
9
9
  # Currently the latest version of the plugin has been tested with Vagrant 1.8.1
10
- ENV VAGRANT_VERSION 1.8.1
11
-
12
- # The plugin currently depends on existence of the USER variable...
13
- ENV USER VAC
10
+ ENV VAGRANT_VERSION 1.9.3
14
11
 
15
12
  # Update before all package installations
16
13
  RUN apt-get update -y && \
@@ -35,7 +32,7 @@ RUN curl -L https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${
35
32
  dpkg -i /tmp/vagrant_x86_64.deb && \
36
33
  rm -f /tmp/vagrant_x86_64.deb && \
37
34
  vagrant plugin install vagrant-cloudstack && \
38
- vagrant plugin install vagrant-winrm
35
+ vagrant plugin install vagrant-winrm --plugin-version 0.7.0
39
36
 
40
37
  RUN curl -L https://packages.chef.io/stable/debian/${CHEFDK_DEB_VERSION}/chefdk_${CHEFDK_VERSION}-1_amd64.deb > /tmp/chef_dk.deb && \
41
38
  dpkg -i /tmp/chef_dk.deb && rm /tmp/chef_dk.deb && \
@@ -43,7 +40,7 @@ RUN curl -L https://packages.chef.io/stable/debian/${CHEFDK_DEB_VERSION}/chefdk_
43
40
  echo 'eval "$(chef shell-init bash)"' >> ~/.bashrc && \
44
41
  /opt/chefdk/embedded/bin/bundler config --global path vendor/bundle && \
45
42
  /opt/chefdk/embedded/bin/bundler config --global bin vendor/bin && \
46
- /opt/chefdk/embedded/bin/gem install kitchen-vagrant
43
+ /opt/chefdk/embedded/bin/gem install kitchen-vagrant -v 0.20.0
47
44
 
48
45
 
49
46
  WORKDIR "/work"
@@ -35,14 +35,14 @@ RUN curl -L https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${
35
35
  dpkg -i /tmp/vagrant_x86_64.deb && \
36
36
  rm -f /tmp/vagrant_x86_64.deb && \
37
37
  vagrant plugin install vagrant-cloudstack && \
38
- vagrant plugin install vagrant-winrm
38
+ vagrant plugin install vagrant-winrm --plugin-version 0.7.0
39
39
 
40
40
  # Install ChefDK
41
41
  RUN curl https://omnitruck.chef.io/install.sh | bash -s -- -c ${CHEFDK_CHANNEL} -P chefdk -v ${CHEFDK_VERSION} && \
42
42
  echo 'eval "$(chef shell-init bash)"' >> ~/.bashrc && \
43
43
  /opt/chefdk/embedded/bin/bundler config --global path vendor/bundle && \
44
44
  /opt/chefdk/embedded/bin/bundler config --global bin vendor/bin && \
45
- /opt/chefdk/embedded/bin/gem install kitchen-vagrant
45
+ /opt/chefdk/embedded/bin/gem install kitchen-vagrant -v 0.20.0
46
46
 
47
47
  WORKDIR "/work"
48
48
 
@@ -35,14 +35,14 @@ RUN curl -L https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${
35
35
  dpkg -i /tmp/vagrant_x86_64.deb && \
36
36
  rm -f /tmp/vagrant_x86_64.deb && \
37
37
  vagrant plugin install vagrant-cloudstack && \
38
- vagrant plugin install vagrant-winrm
38
+ vagrant plugin install vagrant-winrm --plugin-version 0.7.0
39
39
 
40
40
  # Install ChefDK
41
41
  RUN curl https://omnitruck.chef.io/install.sh | bash -s -- -c ${CHEFDK_CHANNEL} -P chefdk -v ${CHEFDK_VERSION} && \
42
42
  echo 'eval "$(chef shell-init bash)"' >> ~/.bashrc && \
43
43
  /opt/chefdk/embedded/bin/bundler config --global path vendor/bundle && \
44
44
  /opt/chefdk/embedded/bin/bundler config --global bin vendor/bin && \
45
- /opt/chefdk/embedded/bin/gem install kitchen-vagrant
45
+ /opt/chefdk/embedded/bin/gem install kitchen-vagrant -v 0.20.0
46
46
 
47
47
  WORKDIR "/work"
48
48
 
data/Docker/README.md CHANGED
@@ -1,41 +1,6 @@
1
1
  # Vagrant Cloudstack Container
2
2
 
3
3
  This container contains some tools commonly used with the vagrant-cloudstack plugin
4
- ## latest
5
- The versions have been specifically tuned to provide a working set for development of the plugin. To this end also developer tools (e.g. make, g++) are installed to enable bundler to pull in and compile required gems.
6
- So this one is _required_ for developing and testing the plugin from (latest, master) source.
7
- * [Vagrant](http://www.vagrantup.com) 1.8.1
8
- * [Vagrant-cloudstack](https://github.com/missioncriticalcloud/vagrant-cloudstack) plugin latest
9
- * [Vagrant-winrm](https://github.com/criteo/vagrant-winrm) latest
10
- * [Chef-DK](https://downloads.chef.io/chef-dk/) 0.10.0
11
- * [Kitchen-Vagrant](https://github.com/test-kitchen/kitchen-vagrant) latest
12
- _As the container is build automatically on triggers, latest versions are latest at time of (re)build_
13
-
14
-
15
- ## latest_dependencies
16
- This may not work for everyone as we try to use latest, but also stable combination of versions.
17
- * [Vagrant](http://www.vagrantup.com) 1.8.1
18
- * [Vagrant-cloudstack](https://github.com/missioncriticalcloud/vagrant-cloudstack) plugin latest
19
- * [Vagrant-winrm](https://github.com/criteo/vagrant-winrm) latest
20
- * [Chef-DK](https://downloads.chef.io/chef-dk/) 0.19
21
- * [Kitchen-Vagrant](https://github.com/test-kitchen/kitchen-vagrant) latest
22
- _As the container is build automatically on triggers, latest versions are latest at time of (re)build_
23
-
24
-
25
- ## chefdk_0_17
26
- This will install chef-client 12.13.37 which is needed for some compatibilty reasons.
27
- * [Vagrant](http://www.vagrantup.com) 1.8.1
28
- * [Vagrant-cloudstack](https://github.com/missioncriticalcloud/vagrant-cloudstack) plugin latest
29
- * [Vagrant-winrm](https://github.com/criteo/vagrant-winrm) latest
30
- * [Chef-DK](https://downloads.chef.io/chef-dk/) 0.17
31
- * [Kitchen-Vagrant](https://github.com/test-kitchen/kitchen-vagrant) latest
32
- _As the container is build automatically on triggers, latest versions are latest at time of (re)build_
33
-
34
-
35
- Links to the respective Dockerfiles:
36
- * [latest](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/Dockerfile)
37
- * [latest_dependencies](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/Dockerfile.latest_dependencies)
38
- * [chefdk_0_17](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/Dockerfile.chefdk_0_17)
39
4
 
40
5
  ## Features
41
6
  * Run Vagrant with the plugin
@@ -65,3 +30,66 @@ docker run \
65
30
  For actual development of the plugin, a lot more variables are required. To this end you can use the [bash script `vac.sh`](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/vac.sh) or [PowerShell script `vac.ps1`](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/vac.ps1) in the git repo.
66
31
 
67
32
  _Note on usage of SSH keyfile_: As the container is mounted on a specific folder (`$(pwd)`), the keyfile must be specified (by `SSH_KEY`) relative to, __and within__, the specified folder!
33
+
34
+ ## Version / Tag notes
35
+ ### Vagrant
36
+ Development of the plugin, means running Vagrant from source, in combination with the specific bundler version (conflict) between ChefDK and Vagrant and ruby version (conflict) between ChefDK and Vagrant, leads to the following version combination:
37
+
38
+ ## dev
39
+ The versions have been specifically tuned to provide a working set for development of the plugin. To this end also developer tools (e.g. make, g++) are installed to enable bundler to pull in and compile required gems.
40
+ So this one is _required_ for developing and testing the plugin from (latest, master) source.
41
+ * [Vagrant](http://www.vagrantup.com) 1.9.3
42
+ * [Vagrant-cloudstack](https://github.com/missioncriticalcloud/vagrant-cloudstack) plugin _current_
43
+ * [Vagrant-winrm](https://github.com/criteo/vagrant-winrm) 0.7.0 (latest)
44
+ * [Chef-DK](https://downloads.chef.io/chef-dk/) 1.2.22
45
+ * [Kitchen-Vagrant](https://github.com/test-kitchen/kitchen-vagrant) 0.20.0
46
+
47
+ _As the container is build automatically on triggers, latest versions are latest at time of (re)build_
48
+
49
+
50
+ ## latest_dependencies
51
+ This may not work for everyone as we try to use latest, but also stable combination of versions.
52
+ For now building on top of the "dev" container, with Vagrant 1.8.1.
53
+ * [Vagrant](http://www.vagrantup.com) 1.8.1
54
+ * [Vagrant-cloudstack](https://github.com/missioncriticalcloud/vagrant-cloudstack) plugin _current_
55
+ * [Vagrant-winrm](https://github.com/criteo/vagrant-winrm) 0.7.0 (latest)
56
+ * [Chef-DK](https://downloads.chef.io/chef-dk/) 0.19
57
+ * [Kitchen-Vagrant](https://github.com/test-kitchen/kitchen-vagrant) 0.20.0
58
+
59
+ _As the container is build automatically on triggers, latest versions are latest at time of (re)build_
60
+
61
+
62
+ ## chefdk_0_17
63
+ This will install chef-client 12.13.37 which is needed for some compatibility reasons.
64
+ * [Vagrant](http://www.vagrantup.com) 1.8.1
65
+ * [Vagrant-cloudstack](https://github.com/missioncriticalcloud/vagrant-cloudstack) plugin _current_
66
+ * [Vagrant-winrm](https://github.com/criteo/vagrant-winrm) 0.7.0 (latest)
67
+ * [Chef-DK](https://downloads.chef.io/chef-dk/) 0.17
68
+ * [Kitchen-Vagrant](https://github.com/test-kitchen/kitchen-vagrant) 0.20.0
69
+
70
+ _As the container is build automatically on triggers, latest versions are latest at time of (re)build_
71
+
72
+
73
+ Links to the respective Dockerfiles:
74
+ * [dev](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/Dockerfile)
75
+ * [latest_dependencies](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/Dockerfile.latest_dependencies)
76
+ * [chefdk_0_17](https://raw.githubusercontent.com/MissionCriticalCloud/vagrant-cloudstack/master/Docker/Dockerfile.chefdk_0_17)
77
+
78
+ ## Additional notes on versions of used packages
79
+ ### Kitchen-Vagrant plugin
80
+ Due to new functionality in this plugin (0.21.0), using existing features, the plugin creates a Vagrantfile which has problems executing. This possibly revealed bugs in Vagrant, which might be fixed in newer Vagrant versions.
81
+ Untill a new Vagrant is in use, this plugin will be pinned to the latest working combination.
82
+
83
+ Bugs reported to kitchen-vagrant:
84
+ * [Windows: The shared folder guest path must be absolute: $env:TEMPomnibusche #256](https://github.com/test-kitchen/kitchen-vagrant/issues/256)
85
+ * [Problem with synced_folder (on Kubernetes) v0.20.0->v0.21.0 #257](https://github.com/test-kitchen/kitchen-vagrant/issues/257)
86
+
87
+
88
+ all containers:
89
+ * Kitchen-Vagrant 0.20.0
90
+
91
+ ### Vagrant-WinRM
92
+ Latest (tested) version at moment of writing is 0.7.0
93
+
94
+ all containers:
95
+ * Kitchen-Vagrant 0.7.0
data/Gemfile CHANGED
@@ -6,7 +6,7 @@ group :development do
6
6
  # We depend on Vagrant for development, but we don't add it as a
7
7
  # gem dependency because we expect to be installed within the
8
8
  # Vagrant environment itself using `vagrant plugin`.
9
- gem 'vagrant', git: 'git://github.com/mitchellh/vagrant.git', tag: 'v1.8.1'
9
+ gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git', tag: 'v2.0.3'
10
10
  gem 'coveralls', require: false
11
11
  gem 'simplecov', require: false
12
12
  gem 'rspec-core'
@@ -16,5 +16,5 @@ group :development do
16
16
  end
17
17
 
18
18
  group :plugins do
19
- gem 'vagrant-cloudstack', path: '.'
19
+ gemspec
20
20
  end
data/Gemfile.lock ADDED
@@ -0,0 +1,307 @@
1
+ GIT
2
+ remote: https://github.com/mitchellh/vagrant.git
3
+ revision: 94fd69e3c081cc29c738186529a7037bb9057907
4
+ tag: v2.0.3
5
+ specs:
6
+ vagrant (2.0.3)
7
+ childprocess (~> 0.6.0)
8
+ erubis (~> 2.7.0)
9
+ hashicorp-checkpoint (~> 0.1.5)
10
+ i18n (>= 0.6.0, <= 0.8.0)
11
+ listen (~> 3.1.5)
12
+ log4r (~> 1.1.9, < 1.1.11)
13
+ net-scp (~> 1.2.0)
14
+ net-sftp (~> 2.1)
15
+ net-ssh (~> 4.2.0)
16
+ rb-kqueue (~> 0.2.0)
17
+ rest-client (>= 1.6.0, < 3.0)
18
+ ruby_dep (<= 1.3.1)
19
+ wdm (~> 0.1.0)
20
+ winrm (~> 2.1)
21
+ winrm-elevated (~> 1.1)
22
+ winrm-fs (~> 1.0)
23
+
24
+ PATH
25
+ remote: .
26
+ specs:
27
+ vagrant-cloudstack (1.5.0)
28
+ fog (>= 1.32.0)
29
+ fog-xml (>= 0.1.2)
30
+
31
+ GEM
32
+ remote: https://rubygems.org/
33
+ specs:
34
+ CFPropertyList (2.3.6)
35
+ builder (3.2.3)
36
+ childprocess (0.6.3)
37
+ ffi (~> 1.0, >= 1.0.11)
38
+ coveralls (0.7.2)
39
+ multi_json (~> 1.3)
40
+ rest-client (= 1.6.7)
41
+ simplecov (>= 0.7)
42
+ term-ansicolor (= 1.2.2)
43
+ thor (= 0.18.1)
44
+ diff-lcs (1.3)
45
+ docile (1.3.0)
46
+ erubis (2.7.0)
47
+ excon (0.62.0)
48
+ ffi (1.9.23)
49
+ fission (0.5.0)
50
+ CFPropertyList (~> 2.2)
51
+ fog (2.0.0)
52
+ fog-aliyun (>= 0.1.0)
53
+ fog-atmos
54
+ fog-aws (>= 0.6.0)
55
+ fog-brightbox (~> 0.4)
56
+ fog-cloudatcost (~> 0.1.0)
57
+ fog-core (~> 1.45)
58
+ fog-digitalocean (>= 0.3.0)
59
+ fog-dnsimple (~> 1.0)
60
+ fog-dynect (~> 0.0.2)
61
+ fog-ecloud (~> 0.1)
62
+ fog-google (<= 0.1.0)
63
+ fog-internet-archive
64
+ fog-joyent
65
+ fog-json
66
+ fog-local
67
+ fog-openstack
68
+ fog-ovirt
69
+ fog-powerdns (>= 0.1.1)
70
+ fog-profitbricks
71
+ fog-rackspace
72
+ fog-radosgw (>= 0.0.2)
73
+ fog-riakcs
74
+ fog-sakuracloud (>= 0.0.4)
75
+ fog-serverlove
76
+ fog-softlayer
77
+ fog-storm_on_demand
78
+ fog-terremark
79
+ fog-vmfusion
80
+ fog-voxel
81
+ fog-vsphere (>= 0.4.0)
82
+ fog-xenserver
83
+ fog-xml (~> 0.1.1)
84
+ ipaddress (~> 0.5)
85
+ json (~> 2.0)
86
+ fog-aliyun (0.2.0)
87
+ fog-core (~> 1.27)
88
+ fog-json (~> 1.0)
89
+ ipaddress (~> 0.8)
90
+ xml-simple (~> 1.1)
91
+ fog-atmos (0.1.0)
92
+ fog-core
93
+ fog-xml
94
+ fog-aws (2.0.1)
95
+ fog-core (~> 1.38)
96
+ fog-json (~> 1.0)
97
+ fog-xml (~> 0.1)
98
+ ipaddress (~> 0.8)
99
+ fog-brightbox (0.14.0)
100
+ fog-core (~> 1.22)
101
+ fog-json
102
+ inflecto (~> 0.0.2)
103
+ fog-cloudatcost (0.1.2)
104
+ fog-core (~> 1.36)
105
+ fog-json (~> 1.0)
106
+ fog-xml (~> 0.1)
107
+ ipaddress (~> 0.8)
108
+ fog-core (1.45.0)
109
+ builder
110
+ excon (~> 0.58)
111
+ formatador (~> 0.2)
112
+ fog-digitalocean (0.3.0)
113
+ fog-core (~> 1.42)
114
+ fog-json (>= 1.0)
115
+ fog-xml (>= 0.1)
116
+ ipaddress (>= 0.5)
117
+ fog-dnsimple (1.0.0)
118
+ fog-core (~> 1.38)
119
+ fog-json (~> 1.0)
120
+ fog-dynect (0.0.3)
121
+ fog-core
122
+ fog-json
123
+ fog-xml
124
+ fog-ecloud (0.3.0)
125
+ fog-core
126
+ fog-xml
127
+ fog-google (0.1.0)
128
+ fog-core
129
+ fog-json
130
+ fog-xml
131
+ fog-internet-archive (0.0.1)
132
+ fog-core
133
+ fog-json
134
+ fog-xml
135
+ fog-joyent (0.0.1)
136
+ fog-core (~> 1.42)
137
+ fog-json (>= 1.0)
138
+ fog-json (1.0.2)
139
+ fog-core (~> 1.0)
140
+ multi_json (~> 1.10)
141
+ fog-local (0.5.0)
142
+ fog-core (>= 1.27, < 3.0)
143
+ fog-openstack (0.1.25)
144
+ fog-core (~> 1.40)
145
+ fog-json (>= 1.0)
146
+ ipaddress (>= 0.8)
147
+ fog-ovirt (0.0.1)
148
+ fog-core (~> 1.45)
149
+ fog-json
150
+ fog-xml (~> 0.1.1)
151
+ fog-powerdns (0.1.1)
152
+ fog-core (~> 1.27)
153
+ fog-json (~> 1.0)
154
+ fog-xml (~> 0.1)
155
+ fog-profitbricks (4.1.1)
156
+ fog-core (~> 1.42)
157
+ fog-json (~> 1.0)
158
+ fog-rackspace (0.1.5)
159
+ fog-core (>= 1.35)
160
+ fog-json (>= 1.0)
161
+ fog-xml (>= 0.1)
162
+ ipaddress (>= 0.8)
163
+ fog-radosgw (0.0.5)
164
+ fog-core (>= 1.21.0)
165
+ fog-json
166
+ fog-xml (>= 0.0.1)
167
+ fog-riakcs (0.1.0)
168
+ fog-core
169
+ fog-json
170
+ fog-xml
171
+ fog-sakuracloud (1.7.5)
172
+ fog-core
173
+ fog-json
174
+ fog-serverlove (0.1.2)
175
+ fog-core
176
+ fog-json
177
+ fog-softlayer (1.1.4)
178
+ fog-core
179
+ fog-json
180
+ fog-storm_on_demand (0.1.1)
181
+ fog-core
182
+ fog-json
183
+ fog-terremark (0.1.0)
184
+ fog-core
185
+ fog-xml
186
+ fog-vmfusion (0.1.0)
187
+ fission
188
+ fog-core
189
+ fog-voxel (0.1.0)
190
+ fog-core
191
+ fog-xml
192
+ fog-vsphere (2.0.1)
193
+ fog-core
194
+ rbvmomi (~> 1.9)
195
+ fog-xenserver (0.3.0)
196
+ fog-core
197
+ fog-xml
198
+ fog-xml (0.1.3)
199
+ fog-core
200
+ nokogiri (>= 1.5.11, < 2.0.0)
201
+ formatador (0.2.5)
202
+ gssapi (1.2.0)
203
+ ffi (>= 1.0.1)
204
+ gyoku (1.3.1)
205
+ builder (>= 2.1.2)
206
+ hashicorp-checkpoint (0.1.5)
207
+ httpclient (2.8.3)
208
+ i18n (0.8.0)
209
+ inflecto (0.0.2)
210
+ ipaddress (0.8.3)
211
+ json (2.1.0)
212
+ listen (3.1.5)
213
+ rb-fsevent (~> 0.9, >= 0.9.4)
214
+ rb-inotify (~> 0.9, >= 0.9.7)
215
+ ruby_dep (~> 1.2)
216
+ little-plugger (1.1.4)
217
+ log4r (1.1.10)
218
+ logging (2.2.2)
219
+ little-plugger (~> 1.1)
220
+ multi_json (~> 1.10)
221
+ mime-types (3.1)
222
+ mime-types-data (~> 3.2015)
223
+ mime-types-data (3.2016.0521)
224
+ mini_portile2 (2.3.0)
225
+ multi_json (1.13.1)
226
+ net-scp (1.2.1)
227
+ net-ssh (>= 2.6.5)
228
+ net-sftp (2.1.2)
229
+ net-ssh (>= 2.6.5)
230
+ net-ssh (4.2.0)
231
+ nokogiri (1.8.2)
232
+ mini_portile2 (~> 2.3.0)
233
+ nori (2.6.0)
234
+ rake (10.5.0)
235
+ rb-fsevent (0.10.3)
236
+ rb-inotify (0.9.10)
237
+ ffi (>= 0.5.0, < 2)
238
+ rb-kqueue (0.2.5)
239
+ ffi (>= 0.5.0)
240
+ rbvmomi (1.11.7)
241
+ builder (~> 3.0)
242
+ json (>= 1.8)
243
+ nokogiri (~> 1.5)
244
+ trollop (~> 2.1)
245
+ rest-client (1.6.7)
246
+ mime-types (>= 1.16)
247
+ rspec-core (3.7.1)
248
+ rspec-support (~> 3.7.0)
249
+ rspec-expectations (3.7.0)
250
+ diff-lcs (>= 1.2.0, < 2.0)
251
+ rspec-support (~> 3.7.0)
252
+ rspec-its (1.2.0)
253
+ rspec-core (>= 3.0.0)
254
+ rspec-expectations (>= 3.0.0)
255
+ rspec-mocks (3.7.0)
256
+ diff-lcs (>= 1.2.0, < 2.0)
257
+ rspec-support (~> 3.7.0)
258
+ rspec-support (3.7.1)
259
+ ruby_dep (1.3.1)
260
+ rubyntlm (0.6.2)
261
+ rubyzip (1.2.1)
262
+ simplecov (0.16.1)
263
+ docile (~> 1.1)
264
+ json (>= 1.8, < 3)
265
+ simplecov-html (~> 0.10.0)
266
+ simplecov-html (0.10.2)
267
+ term-ansicolor (1.2.2)
268
+ tins (~> 0.8)
269
+ thor (0.18.1)
270
+ tins (0.13.2)
271
+ trollop (2.1.2)
272
+ wdm (0.1.1)
273
+ winrm (2.2.3)
274
+ builder (>= 2.1.2)
275
+ erubis (~> 2.7)
276
+ gssapi (~> 1.2)
277
+ gyoku (~> 1.0)
278
+ httpclient (~> 2.2, >= 2.2.0.2)
279
+ logging (>= 1.6.1, < 3.0)
280
+ nori (~> 2.0)
281
+ rubyntlm (~> 0.6.0, >= 0.6.1)
282
+ winrm-elevated (1.1.0)
283
+ winrm (~> 2.0)
284
+ winrm-fs (~> 1.0)
285
+ winrm-fs (1.2.0)
286
+ erubis (~> 2.7)
287
+ logging (>= 1.6.1, < 3.0)
288
+ rubyzip (~> 1.1)
289
+ winrm (~> 2.0)
290
+ xml-simple (1.1.5)
291
+
292
+ PLATFORMS
293
+ ruby
294
+
295
+ DEPENDENCIES
296
+ coveralls
297
+ rake (~> 10.5, >= 10.4)
298
+ rspec-core
299
+ rspec-expectations
300
+ rspec-its
301
+ rspec-mocks
302
+ simplecov
303
+ vagrant!
304
+ vagrant-cloudstack!
305
+
306
+ BUNDLED WITH
307
+ 1.16.1