20 lines
729 B
Ruby
20 lines
729 B
Ruby
|
# -*- 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
|
||
|
gem.authors = ["TODO: Write your name"]
|
||
|
gem.email = ["TODO: Write your email address"]
|
||
|
gem.description = %q{TODO: Write a gem description}
|
||
|
gem.summary = %q{TODO: Write a gem summary}
|
||
|
gem.homepage = ""
|
||
|
|
||
|
gem.files = `git ls-files`.split($/)
|
||
|
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
|