forked from vagrant-landrush/landrush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landrush.gemspec
32 lines (27 loc) · 1.31 KB
/
landrush.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'landrush/version'
Gem::Specification.new do |spec|
spec.name = 'landrush'
spec.version = Landrush::VERSION
spec.authors = ['Paul Hinze']
spec.email = ['[email protected]']
spec.description = <<-DESCRIP.gsub(/^ /, '')
Forget about IPs in Vagrant - Automated DNS for your VMs
This Vagrant plugin spins up a lightweight DNS server and makes it visible
to your guests and your host, so that you can easily access all your
machines without having to fiddle with IP addresses.
DNS records are automatically added and removed as machines are brought up
and down, and you can configure static entries to be returned from the
server as well. See the README for more documentation.
DESCRIP
spec.summary = %q{a vagrant plugin providing consistent DNS visible on host and guests}
spec.homepage = 'https://github.com/phinze/landrush'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'rubydns', '0.7.0'
end