Sha256: 2c2c222ed90fea451a0fdd2334c07f95421f3ce66b41ba82f01f8669471c0735
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
# 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 = ['paul.t.hinze@gmail.com'] 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.8.5' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
landrush-1.0.0 | landrush.gemspec |