18 lines
676 B
Ruby
18 lines
676 B
Ruby
# -*- encoding: utf-8 -*-
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'vagrant-hostmanager/version'
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = 'vagrant-hostmanager'
|
|
gem.version = VagrantPlugins::HostManager::VERSION
|
|
gem.authors = ['Shawn Dahlen']
|
|
gem.email = ['shawn@dahlen.me']
|
|
gem.description = %q{A Vagrant plugin that manages the /etc/hosts file within a multi-machine environment}
|
|
gem.summary = gem.description
|
|
|
|
gem.files = `git ls-files`.split($/)
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
gem.require_paths = ['lib']
|
|
end
|