Sha256: 89bed99c2760379b1c5818cbb336a66f9c419b4cdc1d5417b8442a8e84dbc59d
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-betterhosts/version' Gem::Specification.new do |s| s.name = 'vagrant-betterhosts' s.version = VagrantPlugins::BetterHosts::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Adam Butler'] s.email = ['adam.j.butler@protonmail.com'] s.description = 'Enables Vagrant to update hosts file on the host machine using the goodhosts cli tool' s.summary = 'Vagrant plugin to manage the hosts file on the host machine' s.homepage = 'https://github.com/ajxb/vagrant-betterhosts' s.license = 'MIT' s.required_ruby_version = "~> 2.5", "< 2.8" s.files = `git ls-files`.split($/) s.files += Dir.glob("lib/vagrant-betterhosts/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', '~> 1.3' s.add_development_dependency 'rake', '~> 13.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-betterhosts-0.2.0 | vagrant-betterhosts.gemspec |
vagrant-betterhosts-0.1.0 | vagrant-betterhosts.gemspec |