forked from dotless-de/vagrant-vbguest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vagrant-vbguest.gemspec
30 lines (24 loc) · 1.12 KB
/
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
27
28
29
30
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/vagrant-vbguest/version', __FILE__)
Gem::Specification.new do |s|
s.name = "vagrant-vbguest"
s.version = VagrantVbguest::VERSION
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", "~> 1.1.0"
s.add_development_dependency "bundler", ">= 1.2.0"
# those should be satisfied by vagrant
s.add_dependency "i18n"
s.add_dependency "log4r"
s.add_development_dependency "rake"
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"]
end