Sha256: 5ae15b448ed1848a55a13b2b767d572b4b2464071c2e6fca17127503180b5fce
Contents?: true
Size: 897 Bytes
Versions: 1
Compression:
Stored size: 897 Bytes
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'local-domains/version' Gem::Specification.new do |gem| gem.name = "local-domains" gem.version = LocalDomains::VERSION gem.authors = ["Guilherme Garnier"] gem.email = ["guilherme.garnier@gmail.com"] gem.summary = "Maps a list of domains to an ip address" gem.description = "A simple tool to help keeping your /etc/hosts file up-to-date" gem.homepage = "https://github.com/ggarnier/local-domains" gem.license = "MIT" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency "ghost", "1.0.0.pre.2" gem.add_dependency "sys-host", "0.6.2" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
local-domains-0.1.0 | local-domains.gemspec |