forked from dotless-de/vagrant-vbguest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vagrant-vbguest.gemspec
26 lines (21 loc) · 990 Bytes
/
vagrant-vbguest.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "vagrant-vbguest"
s.version = File.read('VERSION').chop
s.platform = Gem::Platform::RUBY
s.authors = ["Robert Schulze"]
s.email = ["[email protected]"]
s.license = 'MIT'
s.homepage = "https://github.com/dotless-de/vagrant-vbguest"
s.summary = %q{A Vagrant plugin to install the VirtualBoxAdditions into the guest VM}
s.description = %q{A Vagrant plugin which automatically installs the host's VirtualBox Guest Additions on the guest system.}
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "micromachine", ">= 2", "< 4"
# those should be satisfied by vagrant
s.add_dependency "i18n"
s.add_dependency "log4r"
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|testdrive)/}) }
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
end