lab 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lab
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-12-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri
16
- requirement: &7567080 !ruby/object:Gem::Requirement
16
+ requirement: &16885500 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,22 +21,16 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *7567080
24
+ version_requirements: *16885500
25
25
  description: Start/Stop/Revert and do other cool stuff w/ Vmware, Virtualbox, and
26
26
  ESXi vms
27
27
  email:
28
- - jcran@0x0e.org
28
+ - jcran@pentestify.com
29
29
  executables: []
30
30
  extensions: []
31
31
  extra_rdoc_files: []
32
- files:
33
- - .gitignore
34
- - Gemfile
35
- - Rakefile
36
- - lab.gemspec
37
- - lib/lab.rb
38
- - lib/lab/version.rb
39
- homepage: http://www.pentestify.com/vmlab
32
+ files: []
33
+ homepage: http://www.pentestify.com/lab
40
34
  licenses: []
41
35
  post_install_message:
42
36
  rdoc_options: []
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- *.gem
2
- .bundle
3
- Gemfile.lock
4
- pkg/*
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- # Specify your gem's dependencies in lab.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,24 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "lab/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "lab"
7
- s.version = Lab::VERSION
8
- s.authors = ["Jonathan Cran"]
9
- s.email = ["jcran@0x0e.org"]
10
- s.homepage = "http://www.pentestify.com/vmlab"
11
- s.summary = %q{Manage vms like a boss.}
12
- s.description = %q{Start/Stop/Revert and do other cool stuff w/ Vmware, Virtualbox, and ESXi vms}
13
-
14
- s.rubyforge_project = "lab"
15
-
16
- s.files = `git ls-files`.split("\n")
17
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
- s.require_paths = ["lib"]
20
-
21
- # specify any dependencies here; for example:
22
- # s.add_development_dependency "rspec"
23
- s.add_runtime_dependency "nokogiri"
24
- end
data/lib/lab.rb DELETED
@@ -1,4 +0,0 @@
1
- # TODO - use autoload
2
-
3
- require 'lab/vm_controller'
4
- require 'lab/version'
@@ -1,3 +0,0 @@
1
- module Lab
2
- VERSION = "0.0.2"
3
- end