forked from mitchellh/virtualbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtualbox.gemspec
More file actions
27 lines (22 loc) · 1.01 KB
/
virtualbox.gemspec
File metadata and controls
27 lines (22 loc) · 1.01 KB
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
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "virtualbox/version"
Gem::Specification.new do |s|
s.name = "virtualbox"
s.version = VirtualBox::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mitchell Hashimoto"]
s.email = ["mitchell.hashimoto@gmail.com"]
s.homepage = "http://github.com/mitchellh/virtualbox"
s.summary = "Create and modify virtual machines in VirtualBox using pure ruby"
s.description = "Create and modify virtual machines in VirtualBox using pure ruby"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "virtualbox"
s.add_dependency "ffi", "~> 1.0.9"
s.add_development_dependency "contest", "~> 0.1.2"
s.add_development_dependency "mocha", "~> 0.9.8"
s.add_development_dependency "rake", "~> 0.9.2"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end