Sha256: 593b01523aea6b1bfbdb69df9ae475009618c4abbfaf14079d3550da32a48de2

Contents?: true

Size: 1011 Bytes

Versions: 1

Compression:

Stored size: 1011 Bytes

Contents

# coding: utf-8
require File.expand_path('../lib/pwhois/version', __FILE__)

Gem::Specification.new do |spec|
  spec.name          = "pwhois"
  spec.version       = Pwhois::VERSION
  spec.authors       = ["Seth Wright"]
  spec.email         = ["seth@crosse.org"]

  spec.summary       = %q{A WHOIS client that provides consistent and coherent results.}
  spec.description   = <<-EOF
    pwhois is a small command-line utility that takes advantage of the
    whois module to parse WHOIS results and display them in a
    consistent, coherent style.
  EOF
  spec.homepage      = "https://github.com/Crosse/pwhois"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($\)
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.executables   = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }

  spec.require_paths = ["lib"]
  spec.required_ruby_version = '>= 2.2.3'
  spec.add_runtime_dependency 'whois', '~>3.6'
  spec.add_development_dependency 'rake', '~>11.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pwhois-1.2.2 pwhois.gemspec