Sha256: c86960d4a38c89ba49e56c4f3b9ab41432ce56500986e8bdbe5a5e106c12671c
Contents?: true
Size: 990 Bytes
Versions: 7
Compression:
Stored size: 990 Bytes
Contents
# -*- 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 = ["robert@dotless.de"] 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
Version data entries
7 entries across 7 versions & 1 rubygems