solusvm 0.4.2 → 0.4.3
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/.gitignore +1 -0
- data/README.rdoc +4 -2
- data/VERSION.yml +3 -3
- data/bin/solusvm +1 -0
- data/solusvm.gemspec +2 -2
- metadata +4 -4
data/.gitignore
CHANGED
data/README.rdoc
CHANGED
|
@@ -5,7 +5,6 @@ Solusvm allows for easy interaction with the SolusVM Admin::API.
|
|
|
5
5
|
This library was first created for internal use at {Site5 LLC}[http://www.site5.com].
|
|
6
6
|
|
|
7
7
|
== Basic Examples
|
|
8
|
-
|
|
9
8
|
Solusvm.config('api_id', 'api_password', :url => 'http://www.example.com/api')
|
|
10
9
|
server = Solusvm::Server.new
|
|
11
10
|
|
|
@@ -54,7 +53,7 @@ This library was first created for internal use at {Site5 LLC}[http://www.site5.
|
|
|
54
53
|
|
|
55
54
|
== Default Config for Command Line
|
|
56
55
|
The command line utility, solusvm, will look for a .solusvm.yml file in ~/. You can specify some defaults.
|
|
57
|
-
~/.
|
|
56
|
+
~/.solusvm.yml
|
|
58
57
|
id: api_id
|
|
59
58
|
key: api_key
|
|
60
59
|
# URL to the API endpoint
|
|
@@ -65,6 +64,9 @@ The command line utility, solusvm, will look for a .solusvm.yml file in ~/. You
|
|
|
65
64
|
== REQUIREMENTS:
|
|
66
65
|
* xml-simple
|
|
67
66
|
|
|
67
|
+
== DOCUMENTATION
|
|
68
|
+
* http://solusvm.rubyforge.org/solusvm/
|
|
69
|
+
|
|
68
70
|
== INSTALL:
|
|
69
71
|
* gem install solusvm
|
|
70
72
|
|
data/VERSION.yml
CHANGED
data/bin/solusvm
CHANGED
|
@@ -19,6 +19,7 @@ shell_methods['server-status'] = "<vserverid>"
|
|
|
19
19
|
shell_methods['server-addip'] = "<vserverid>"
|
|
20
20
|
shell_methods['server-changeplan'] = "<vserverid> <newplan>"
|
|
21
21
|
shell_methods['server-check-exists'] = "<vserverid>"
|
|
22
|
+
shell_methods['server-terminate'] = "<vserverid>"
|
|
22
23
|
|
|
23
24
|
OptionParser.new do |o|
|
|
24
25
|
o.banner = "USAGE: #{File.basename($0)} <command> [options]"
|
data/solusvm.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{solusvm}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Justin Mazzi"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-07-08}
|
|
13
13
|
s.default_executable = %q{solusvm}
|
|
14
14
|
s.description = %q{Solusvm allows for easy interaction with the SolusVM Admin::API.}
|
|
15
15
|
s.email = %q{jmazzi@gmail.com}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solusvm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
version: 0.4.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.4.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Justin Mazzi
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-07-08 00:00:00 -04:00
|
|
19
19
|
default_executable: solusvm
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|