netvbox 0.0.2 → 0.0.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/README.rdoc ADDED
@@ -0,0 +1,18 @@
1
+ = netvbox
2
+
3
+ == Description
4
+ netvbox is a {ruby gem}[https://rubygems.org/gems/netvbox] designed for limited
5
+ administration of VirtualBox VMs on networked machines in a Linux environment.
6
+
7
+ The original use case was for testing {Chef}[http://www.opscode.com/chef/]
8
+ recipes without needing (or wanting) to provision (and pay for) cloud resources
9
+ (e.g. Amazon EC2). Take a few spare machines, install VirtualBox on each, create
10
+ some snapshots and you're ready to go.
11
+
12
+ netvbox maintains a list of snapshots for VirtualBox VMs, and can easily load
13
+ all snapshots, power off all VMs, and display VM status information. VMs can
14
+ be added and removed from the list via the add and remove subcommands.
15
+
16
+ == Sub-commands
17
+ netvbox uses sub-comamnds. Type netvbox with no arguments to see the commands
18
+
@@ -1,3 +1,3 @@
1
1
  module NetVbox
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/netvbox.gemspec CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.name = 'netvbox'
7
7
  s.version = NetVbox::VERSION
8
8
  s.homepage = 'https://github.com/dhsu/netvbox'
9
- s.summary = 'Remote administration of VirtualBox VMs through ssh'
9
+ s.summary = 'Limited remote admin of VirtualBox VMs through ssh'
10
10
  s.authors = ['Dennis Hsu']
11
11
  s.email = ['hsu.dennis@gmail.com']
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netvbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-11-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh
16
- requirement: &18094100 !ruby/object:Gem::Requirement
16
+ requirement: &10050840 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *18094100
24
+ version_requirements: *10050840
25
25
  description:
26
26
  email:
27
27
  - hsu.dennis@gmail.com
@@ -32,6 +32,7 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - .gitignore
34
34
  - Gemfile
35
+ - README.rdoc
35
36
  - Rakefile
36
37
  - bin/netvbox
37
38
  - lib/netvbox.rb
@@ -63,5 +64,5 @@ rubyforge_project:
63
64
  rubygems_version: 1.8.10
64
65
  signing_key:
65
66
  specification_version: 3
66
- summary: Remote administration of VirtualBox VMs through ssh
67
+ summary: Limited remote admin of VirtualBox VMs through ssh
67
68
  test_files: []