-
Notifications
You must be signed in to change notification settings - Fork 1
/
public_suffix_list.gemspec
44 lines (40 loc) · 1.54 KB
/
public_suffix_list.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- ruby -*-
load "lib/public_suffix_list.rb"
Gem::Specification.new do |s|
s.name = %q{public-suffix-list}
s.summary = <<-SUMMARY.strip.gsub(/\n\s+/, " ")
Public Suffix List is a small Ruby library designed to make the
Public Suffix List (http://publicsuffix.org/) easier to use.
SUMMARY
s.description = <<-DESCRIPTION.strip.gsub(/\n\s+/, " ")
The Public Suffix List (http://publicsuffix.org/) is "a
cross-vendor initiative to provide an accurate list of domain name
suffixes". Such a list is necessary because "there was and remains
no algorithmic method of finding the highest level at which a
domain may be registered for a particular top-level domain (the
policies differ with each registry)...". Public Suffix List is
also a small Ruby library designed to make the Public Suffix List
(http://publicsuffix.org/) easier to use.
DESCRIPTION
s.homepage = %q{http://github.com/toddsundsted/Public-Suffix-List}
s.authors = ["Todd Sundsted"]
s.version = PublicSuffixList::VERSION
s.require_paths = ["lib"]
s.files = [
"Gemfile",
"README.rdoc",
"lib/public_suffix_list.rb",
"lib/public_suffix_list/cache_file.rb",
"lib/public_suffix_list/parser.rb",
"rbi/public_suffix_list.rbi",
"rbi/public_suffix_list/cache_file.rbi",
"rbi/public_suffix_list/parser.rbi",
"spec/caching_spec.rb",
"spec/cookie_calculation_spec.rb",
"spec/public_suffix_list_spec.rb",
"spec/rdoc_synopsis_spec.rb",
"spec/upcase_downcase_spec.rb",
"spec/test.dat"
]
s.has_rdoc = true
end