-
Notifications
You must be signed in to change notification settings - Fork 8
/
vagrant-goodhosts.gemspec
27 lines (23 loc) · 1.03 KB
/
vagrant-goodhosts.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-goodhosts/version'
Gem::Specification.new do |s|
s.name = 'vagrant-goodhosts'
s.version = VagrantPlugins::GoodHosts::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.2'
s.authors = ['Daniele Scasciafratte']
s.email = ['mte90net@gmail.com']
s.description = "Enables Vagrant to update hosts file on the host machine with goodhosts"
s.summary = s.description
s.homepage = 'https://github.com/goodhosts/vagrant'
s.license = 'MIT'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.files += Dir.glob("lib/vagrant-goodhosts/bundle/*")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_development_dependency 'bundler', '>= 2.2.10'
s.add_development_dependency 'rake'
s.add_runtime_dependency "os"
end