forked from double-z/lab
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlab.gemspec
44 lines (34 loc) · 1.25 KB
/
lab.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'lab/version'
Gem::Specification.new do |s|
s.name = "lab"
s.version = Lab::VERSION
s.authors = ["Jonathan Cran"]
s.email = ["[email protected]"]
s.homepage = "http://www.github.com/rapid7/lab/wiki"
s.summary = %q{Manage VMs like a boss}
s.description = %q{Start/Stop/Revert and do other cool stuff w/ Vmware, Virtualbox, and ESXi vms. This gem wraps common CLI utilities and other gems to create a common inteface for vms. }
s.rubyforge_project = "lab"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
##
## Dependencies
##
# Fallback execute / copy in the drivers
s.add_runtime_dependency "net-ssh"
s.add_runtime_dependency "net-scp"
# Powers the vsphere driver
s.add_runtime_dependency "rbvmomi"
# Powers the fog driver
s.add_runtime_dependency "fog"
# util/console.rb
s.add_runtime_dependency "pry"
##
## UI Dependencies
##
s.add_runtime_dependency "sinatra"
end