vagrant-cloudstack 0.2.0 → 0.4.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: 1a9724648009ab879e5942a62aa08d4c188252d7
4
- data.tar.gz: 1d0a3bdc0cf73b524751f9d05d93ecc0936dc61a
3
+ metadata.gz: a924ee1ce1d0102050ecca9fdc9cea9a98f05c62
4
+ data.tar.gz: 904e0781003950663ef12f961994e4a616493403
5
5
  SHA512:
6
- metadata.gz: ea6c055c56ff72ae743972a5afa07c2b6bfc79bd7c65e9fa6b1838462c39e2e46cdb861236c8f99c87496a8aab1d0425863e91d2651680e4c278a7680e2ec1db
7
- data.tar.gz: ecda268bcf95ab512827da77c009aca1e98c0ecd3f6f64e619c5ef675c35881efce7fcbdf0892f4343cfb9b941b2be1f4bd3edef1f0fa537e6360a3da82f0168
6
+ metadata.gz: eac5cb6bf2c1829da359e673ead72f11fff8a6dd11ac660b41858148b7728ac493b17c82e3aa6723560d9a2159bd9ff8e098a9ec25e71764607a3f0fe234736b
7
+ data.tar.gz: eb07f7ee6b1a6d2743bcf14aea26092f10928706e2fd25178c598f0c7726cf83e0a4034fb442a929669aebdf96e148497bb6a734f5cc49451c00c11da3f02605
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 1.9.3-p484
1
+ 2.0.0-p451
data/.travis.yml CHANGED
@@ -5,6 +5,14 @@ notifications:
5
5
  before_install:
6
6
  - sudo apt-get update -qq
7
7
  - sudo apt-get install -qq -y bsdtar
8
+ - gem install bundler -v '1.5.2'
8
9
  rvm:
9
- - 1.9.3
10
+ - 2.0.0
10
11
  script: rake
12
+ notifications:
13
+ webhooks:
14
+ urls:
15
+ - https://webhooks.gitter.im/e/83f6eebe81bad15857f4
16
+ on_success: always # options: [always|never|change] default: always
17
+ on_failure: always # options: [always|never|change] default: always
18
+ on_start: false # default: false
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # 0.4.0 (Mar 30, 2014)
2
+
3
+ * Fix for Vagrant > =1.5 [GH-29]
4
+
5
+ # 0.3.0 (Mar 3, 2014)
6
+
7
+ * Update fog to latest version (1.20.0)
8
+ * Update ruby version to 2.0.0-p451
9
+ * Add Gitter.im notification
10
+
11
+ # 0.2.1 (Jan 12, 2014)
12
+
13
+ * Remove extranous printout
14
+
1
15
  # 0.2.0 (Jan 8, 2014)
2
16
 
3
17
  * Add display name and group support
data/build_rpm.sh CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/bin/bash
2
- VERSION=0.2.0
2
+ VERSION=0.4.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
@@ -15,7 +15,7 @@ module VagrantPlugins
15
15
 
16
16
  def call(env)
17
17
  # Get the domain we're going to booting up in
18
- domain = env[:machine].provider_config.domain
18
+ domain = env[:machine].provider_config.domain_id
19
19
 
20
20
  # Get the configs
21
21
  domain_config = env[:machine].provider_config.get_domain_config(domain)
@@ -30,7 +30,7 @@ module VagrantPlugins
30
30
  end
31
31
 
32
32
  # Get the Port forwarding config
33
- domain = machine.provider_config.domain
33
+ domain = machine.provider_config.domain_id
34
34
  domain_config = machine.provider_config.get_domain_config(domain)
35
35
 
36
36
  pf_ip_address_id = domain_config.pf_ip_address_id
@@ -22,7 +22,7 @@ module VagrantPlugins
22
22
  env[:metrics] ||= {}
23
23
 
24
24
  # Get the domain we're going to booting up in
25
- domain = env[:machine].provider_config.domain
25
+ domain = env[:machine].provider_config.domain_id
26
26
 
27
27
  # Get the configs
28
28
  domain_config = env[:machine].provider_config.get_domain_config(domain)
@@ -80,7 +80,6 @@ module VagrantPlugins
80
80
  env[:ui].info(" -- Display Name: #{display_name}")
81
81
  env[:ui].info(" -- Group: #{group}") if group
82
82
  env[:ui].info(" -- Service offering UUID: #{service_offering_id}")
83
- env[:ui].info(" -- Service offering UUID: #{service_offering_id}")
84
83
  env[:ui].info(" -- Template UUID: #{template_id}")
85
84
  env[:ui].info(" -- Project UUID: #{project_id}") if project_id != nil
86
85
  env[:ui].info(" -- Zone UUID: #{zone_id}")
@@ -27,7 +27,7 @@ module VagrantPlugins
27
27
  begin
28
28
  server.start
29
29
 
30
- domain = env[:machine].provider_config.domain
30
+ domain = env[:machine].provider_config.domain_id
31
31
  domain_config = env[:machine].provider_config.get_domain_config(domain)
32
32
 
33
33
  # Wait for the instance to be ready first
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Cloudstack
3
- VERSION = "0.2.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.version = VagrantPlugins::Cloudstack::VERSION
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.license = "MIT"
9
- s.authors = ["Mitchell Hashimoto", "Carl Loa Odin", "Tor-Åke Fransson", "Olle Lundberg", "Roeland Kuipers", "Yuichi Uemura", "Atsushi Sasaki", "Nicolas Brechet", "Peter Jönsson"]
9
+ s.authors = ["Mitchell Hashimoto", "Carl Loa Odin", "Tor-Åke Fransson", "Olle Lundberg", "Roeland Kuipers", "Yuichi Uemura", "Atsushi Sasaki", "Nicolas Brechet", "Peter Jönsson", "Christophe Roux"]
10
10
  s.email = "engineering.support@klarna.com"
11
11
  s.homepage = "https://github.com/klarna/vagrant-cloudstack/"
12
12
  s.summary = "Enables Vagrant to manage machines in Cloudstack."
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.required_rubygems_version = ">= 1.3.6"
16
16
  s.rubyforge_project = "vagrant-cloudstack"
17
17
 
18
- s.add_runtime_dependency "fog", "~> 1.19.0"
18
+ s.add_runtime_dependency "fog", "~> 1.20.0"
19
19
 
20
20
  s.add_development_dependency "rake"
21
21
  s.add_development_dependency "rspec-core", "~> 2.14.7"
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.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto
@@ -13,10 +13,11 @@ authors:
13
13
  - Atsushi Sasaki
14
14
  - Nicolas Brechet
15
15
  - Peter Jönsson
16
+ - Christophe Roux
16
17
  autorequire:
17
18
  bindir: bin
18
19
  cert_chain: []
19
- date: 2014-01-08 00:00:00.000000000 Z
20
+ date: 2014-03-31 00:00:00.000000000 Z
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
22
23
  name: fog
@@ -24,14 +25,14 @@ dependencies:
24
25
  requirements:
25
26
  - - ~>
26
27
  - !ruby/object:Gem::Version
27
- version: 1.19.0
28
+ version: 1.20.0
28
29
  type: :runtime
29
30
  prerelease: false
30
31
  version_requirements: !ruby/object:Gem::Requirement
31
32
  requirements:
32
33
  - - ~>
33
34
  - !ruby/object:Gem::Version
34
- version: 1.19.0
35
+ version: 1.20.0
35
36
  - !ruby/object:Gem::Dependency
36
37
  name: rake
37
38
  requirement: !ruby/object:Gem::Requirement
@@ -159,3 +160,4 @@ signing_key:
159
160
  specification_version: 4
160
161
  summary: Enables Vagrant to manage machines in Cloudstack.
161
162
  test_files: []
163
+ has_rdoc: