vagrant-chassis-digitalocean 1.0.0 → 1.0.1
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.
- data/Gemfile +1 -0
- data/lib/vagrant-chassis-digitalocean.rb +3 -3
- data/lib/vagrant-chassis-digitalocean/actions.rb +12 -12
- data/lib/vagrant-chassis-digitalocean/actions/create.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/actions/destroy.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/actions/power_off.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/actions/power_on.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/actions/rebuild.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/actions/reload.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/actions/setup_key.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/helpers/client.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/provider.rb +1 -1
- data/lib/vagrant-chassis-digitalocean/version.rb +1 -1
- data/test/Vagrantfile +1 -1
- data/vagrant-chassis-digitalocean/.gitignore +17 -0
- data/vagrant-chassis-digitalocean/Gemfile +4 -0
- data/vagrant-chassis-digitalocean/LICENSE.txt +22 -0
- data/vagrant-chassis-digitalocean/README.md +29 -0
- data/vagrant-chassis-digitalocean/Rakefile +1 -0
- data/vagrant-chassis-digitalocean/lib/vagrant/chassis/digitalocean.rb +9 -0
- data/vagrant-chassis-digitalocean/lib/vagrant/chassis/digitalocean/version.rb +7 -0
- data/vagrant-chassis-digitalocean/vagrant-chassis-digitalocean.gemspec +23 -0
- metadata +9 -1
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
require 'vagrant-digitalocean/version'
|
2
|
-
require 'vagrant-digitalocean/plugin'
|
3
|
-
require 'vagrant-digitalocean/errors'
|
1
|
+
require 'vagrant-chassis-digitalocean/version'
|
2
|
+
require 'vagrant-chassis-digitalocean/plugin'
|
3
|
+
require 'vagrant-chassis-digitalocean/errors'
|
4
4
|
|
5
5
|
module VagrantPlugins
|
6
6
|
module DigitalOcean
|
@@ -1,15 +1,15 @@
|
|
1
|
-
require 'vagrant-digitalocean/actions/check_state'
|
2
|
-
require 'vagrant-digitalocean/actions/create'
|
3
|
-
require 'vagrant-digitalocean/actions/destroy'
|
4
|
-
require 'vagrant-digitalocean/actions/power_off'
|
5
|
-
require 'vagrant-digitalocean/actions/power_on'
|
6
|
-
require 'vagrant-digitalocean/actions/rebuild'
|
7
|
-
require 'vagrant-digitalocean/actions/reload'
|
8
|
-
require 'vagrant-digitalocean/actions/setup_user'
|
9
|
-
require 'vagrant-digitalocean/actions/setup_sudo'
|
10
|
-
require 'vagrant-digitalocean/actions/setup_key'
|
11
|
-
require 'vagrant-digitalocean/actions/sync_folders'
|
12
|
-
require 'vagrant-digitalocean/actions/modify_provision_path'
|
1
|
+
require 'vagrant-chassis-digitalocean/actions/check_state'
|
2
|
+
require 'vagrant-chassis-digitalocean/actions/create'
|
3
|
+
require 'vagrant-chassis-digitalocean/actions/destroy'
|
4
|
+
require 'vagrant-chassis-digitalocean/actions/power_off'
|
5
|
+
require 'vagrant-chassis-digitalocean/actions/power_on'
|
6
|
+
require 'vagrant-chassis-digitalocean/actions/rebuild'
|
7
|
+
require 'vagrant-chassis-digitalocean/actions/reload'
|
8
|
+
require 'vagrant-chassis-digitalocean/actions/setup_user'
|
9
|
+
require 'vagrant-chassis-digitalocean/actions/setup_sudo'
|
10
|
+
require 'vagrant-chassis-digitalocean/actions/setup_key'
|
11
|
+
require 'vagrant-chassis-digitalocean/actions/sync_folders'
|
12
|
+
require 'vagrant-chassis-digitalocean/actions/modify_provision_path'
|
13
13
|
|
14
14
|
module VagrantPlugins
|
15
15
|
module DigitalOcean
|
data/test/Vagrantfile
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Bronson Quick
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Vagrant::Chassis::Digitalocean
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'vagrant-chassis-digitalocean'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install vagrant-chassis-digitalocean
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( http://github.com/<my-github-username>/vagrant-chassis-digitalocean/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'vagrant/chassis/digitalocean/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "vagrant-chassis-digitalocean"
|
8
|
+
spec.version = Vagrant::Chassis::Digitalocean::VERSION
|
9
|
+
spec.authors = ["Bronson Quick"]
|
10
|
+
spec.email = ["bronson@sennza.com.au"]
|
11
|
+
spec.summary = %q{TODO: Write a short summary. Required.}
|
12
|
+
spec.description = %q{TODO: Write a longer description. Optional.}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-chassis-digitalocean
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -104,6 +104,14 @@ files:
|
|
104
104
|
- test/test_id_rsa
|
105
105
|
- test/test_id_rsa.pub
|
106
106
|
- vagrant-chassis-digitalocean.gemspec
|
107
|
+
- vagrant-chassis-digitalocean/.gitignore
|
108
|
+
- vagrant-chassis-digitalocean/Gemfile
|
109
|
+
- vagrant-chassis-digitalocean/LICENSE.txt
|
110
|
+
- vagrant-chassis-digitalocean/README.md
|
111
|
+
- vagrant-chassis-digitalocean/Rakefile
|
112
|
+
- vagrant-chassis-digitalocean/lib/vagrant/chassis/digitalocean.rb
|
113
|
+
- vagrant-chassis-digitalocean/lib/vagrant/chassis/digitalocean/version.rb
|
114
|
+
- vagrant-chassis-digitalocean/vagrant-chassis-digitalocean.gemspec
|
107
115
|
homepage:
|
108
116
|
licenses: []
|
109
117
|
post_install_message:
|