Sha256: 340175d6e7d0c5b89488643fc55a71fc383049a0e4933804af1fe61a9cfad84d
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) require 'whois/version' Gem::Specification.new do |s| s.name = 'whois' s.version = Whois::VERSION s.authors = ['Simone Carletti'] s.email = ['weppos@weppos.net'] s.homepage = 'https://whoisrb.org/' s.summary = 'An intelligent pure Ruby WHOIS client and parser.' s.description = 'Whois is an intelligent WHOIS client and parser written in pure Ruby. It can query registry data for IPv4, IPv6 and top level domains, and parse the responses into easy-to-use Ruby objects via the whois-parser library.' s.license = 'MIT' s.required_ruby_version = '>= 2.4' s.require_paths = %w( lib ) s.executables =%w( whoisrb ) s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.extra_rdoc_files = %w( LICENSE.txt .yardopts ) s.add_development_dependency "rake" s.add_development_dependency "rspec" s.add_development_dependency "yard" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
whois-5.1.0 | whois.gemspec |
whois-5.0.2 | whois.gemspec |
whois-5.0.1 | whois.gemspec |
whois-5.0.0 | whois.gemspec |