-
Notifications
You must be signed in to change notification settings - Fork 50
/
vagrant-dns.gemspec
38 lines (31 loc) · 1.66 KB
/
vagrant-dns.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
28
29
30
31
32
33
34
35
36
37
38
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/vagrant-dns/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Florian Gilcher", "Robert Schulze"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{vagrant-dns is a vagrant plugin that manages DNS records associated with local machines.}
gem.summary = %q{vagrant-dns manages DNS records of vagrant machines}
gem.homepage = "https://github.com/BerlinVagrant/vagrant-dns"
gem.license = "MIT"
gem.files = `git ls-files`.split($\).reject { |f| f.match(%r{^(test|testdrive)/}) }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "vagrant-dns"
gem.require_paths = ["lib"]
gem.version = VagrantDNS::VERSION
gem.metadata = {
"bug_tracker_uri" => "https://github.com/BerlinVagrant/vagrant-dns/issues",
"changelog_uri" => "https://github.com/BerlinVagrant/vagrant-dns/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/BerlinVagrant/vagrant-dns",
"wiki_uri" => "https://github.com/BerlinVagrant/vagrant-dns/wiki"
}
gem.required_ruby_version = '>= 2.2.6'
gem.add_dependency "daemons"
gem.add_dependency "rubydns", '~> 2.0.0'
gem.add_dependency "public_suffix"
# Pinning async gem to work around an issue in vagrant, where it does not
# honor "required_ruby_version" while resolving sub-dependencies.
# see: https://github.com/hashicorp/vagrant/issues/12640
gem.add_dependency 'async', '~> 1.30', '>= 1.30.3'
gem.add_development_dependency 'rspec'
end