forked from weppos/whois-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
whois-parser.gemspec
28 lines (23 loc) · 986 Bytes
/
whois-parser.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'whois/parser/version'
Gem::Specification.new do |s|
s.name = 'whois-parser'
s.version = Whois::Parser::VERSION
s.authors = ['Simone Carletti']
s.email = ['[email protected]']
s.homepage = 'https://whoisrb.org/'
s.summary = 'A pure Ruby WHOIS parser.'
s.description = 'Whois Parser is a WHOIS parser written in pure Ruby. It can parse and convert responses into easy-to-use Ruby objects.'
s.license = 'MIT'
s.required_ruby_version = ">= 2.3"
s.require_paths = %w( lib )
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_dependency "whois", ">= 4.1.0"
s.add_dependency "activesupport", ">= 4"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "yard"
end