vagrant-digitalocean 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e84391852e5ea5d30aa39ad5f21b5f66639fe09
4
- data.tar.gz: d97c2cd55f9b1393ab52ef944198ba0336e8d950
3
+ metadata.gz: 221e990e6d7454474a5253b3309ee96bb59943e6
4
+ data.tar.gz: a70c440a390e05212666a1087e8434d3b23c9139
5
5
  SHA512:
6
- metadata.gz: 66c39766c64f5c43e30c668c0626337516eaa07c593ff816bf93b0d28841a3a403ba9ad54cfed9622213ef1c01d12c6c8993e5f53c54cd85ca702e7cd28359a8
7
- data.tar.gz: 474412b8a92d58fb5697a007a63951a11eb01b62c2be95123aa45ad7a8b4152e434ae2e76c6a3f8a4a603f4f5a7126842d371f0dedadcbb88a66d47ad4df2d42
6
+ metadata.gz: 54956e7f732e24d6fae24334e19e770428ad9af92ddbe7929f6b74d2a6e320c0def1546c1ee4aec3d40acc14c86960df585891528f8acef12f1422b8f40db459
7
+ data.tar.gz: 71c3865d6e331aade2be83d3265578ad1435765c8e7bd4ccb80f1b2ad98a6c628c5b1e87148a737b6ead89b95541f1a58aa613821d2da2233663d59b7bb7d497
data/README.md CHANGED
@@ -4,9 +4,9 @@ DigitalOcean Vagrant Provider
4
4
  [![Gem](https://img.shields.io/gem/v/vagrant-digitalocean.svg)](https://rubygems.org/gems/vagrant-digitalocean)
5
5
  [![Gem](https://img.shields.io/gem/dt/vagrant-digitalocean.svg)](https://rubygems.org/gems/vagrant-digitalocean)
6
6
  [![Gem](https://img.shields.io/gem/dtv/vagrant-digitalocean.svg)](https://rubygems.org/gems/vagrant-digitalocean)
7
- [![Twitter](https://img.shields.io/twitter/url/https/github.com/smdahlen/vagrant-digitalocean.svg?style=social)](https://twitter.com/intent/tweet?text=Check%20out%20this%20awesome%20Vagrant%20plugin%21&url=https%3A%2F%2Fgithub.com%2Fsmdahlen%2Fvagrant-digitalocean&hashtags=vagrant%2Cdigitalocean&original_referer=)
7
+ [![Twitter](https://img.shields.io/twitter/url/https/github.com/devopsgroup-io/vagrant-digitalocean.svg?style=social)](https://twitter.com/intent/tweet?text=Check%20out%20this%20awesome%20Vagrant%20plugin%21&url=https%3A%2F%2Fgithub.com%2Fdevopsgroup-io%2Fvagrant-digitalocean&hashtags=vagrant%2Cdigitalocean&original_referer=)
8
8
 
9
- `vagrant-digitalocean` is a provider plugin for Vagrant that supports the management of [DigitalOcean](https://www.digitalocean.com/) droplets (instances).
9
+ `vagrant-digitalocean` is a Vagrant provider plugin that supports the management of [DigitalOcean](https://www.digitalocean.com/) droplets (instances).
10
10
 
11
11
  Features include:
12
12
  - create and destroy droplets
@@ -36,7 +36,7 @@ Vagrant.configure('2') do |config|
36
36
  config.vm.provider :digital_ocean do |provider, override|
37
37
  override.ssh.private_key_path = '~/.ssh/id_rsa'
38
38
  override.vm.box = 'digital_ocean'
39
- override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
39
+ override.vm.box_url = "https://github.com/devopsgroup-io/vagrant-digitalocean/raw/master/box/digital_ocean.box"
40
40
 
41
41
  provider.token = 'YOUR TOKEN'
42
42
  provider.image = 'ubuntu-14-04-x64'
@@ -162,7 +162,7 @@ To release a new version of vagrant-digitalocean you will need to do the followi
162
162
  * Follow [Semantic Versioning](http://semver.org/).
163
163
  2. Then, create a matching GitHub Release (this will also create a tag):
164
164
  * Preface the version number with a `v`.
165
- * https://github.com/smdahlen/vagrant-digitalocean/releases
165
+ * https://github.com/devopsgroup-io/vagrant-digitalocean/releases
166
166
  3. You will then need to build and push the new gem to RubyGems:
167
167
  * `rake gem:build`
168
168
  * `gem push pkg/vagrant-digitalocean-0.7.6.gem`
@@ -12,7 +12,7 @@ module VagrantPlugins
12
12
  Config
13
13
  end
14
14
 
15
- provider(:digital_ocean) do
15
+ provider(:digital_ocean, parallel: true) do
16
16
  require_relative 'provider'
17
17
  Provider
18
18
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module DigitalOcean
3
- VERSION = '0.8.0'
3
+ VERSION = '0.9.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-digitalocean
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Bender
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-03-22 00:00:00.000000000 Z
12
+ date: 2016-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday