vagrant-lxc-ng/vagrant-lxc.gemspec

21 lines
763 B
Ruby
Raw Normal View History

2013-02-25 23:09:32 +00:00
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-lxc/version'
Gem::Specification.new do |gem|
gem.name = "vagrant-lxc"
gem.version = Vagrant::LXC::VERSION
2013-03-02 23:40:25 +00:00
gem.authors = ["Fabio Rehm"]
gem.email = ["fgrehm@gmail.com"]
gem.description = %q{Linux Containers provider for Vagrant}
gem.summary = gem.description
2013-07-22 01:51:27 +00:00
gem.license = 'MIT'
2013-03-02 23:40:25 +00:00
gem.homepage = "https://github.com/fgrehm/vagrant-lxc"
2013-02-25 23:09:32 +00:00
gem.files = `git ls-files`.split($/)
2013-02-25 23:09:32 +00:00
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end