-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathip2proxy_ruby.gemspec
More file actions
69 lines (63 loc) · 2.46 KB
/
ip2proxy_ruby.gemspec
File metadata and controls
69 lines (63 loc) · 2.46 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# coding: utf-8
Gem::Specification.new do |s|
s.name = "ip2proxy_ruby"
s.version = "3.4.0"
s.authors = ["ip2location"]
s.email = ["support@ip2location.com"]
s.summary = "IP2Proxy Ruby library"
s.description = "The official IP2Proxy Ruby library to detect VPN servers, open proxies, web proxies, Tor exit nodes, search engine robots, data center ranges and residential proxies using IP2Proxy BIN database. Other information available includes proxy type, country, state, city, ISP, domain name, usage type, AS number, AS name, threats, last seen date and provider names."
s.homepage = "https://github.com/ip2location/ip2proxy-ruby"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".document",
".gitignore",
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"ip2proxy_ruby.gemspec",
"example.rb",
"lib/ip2proxy_ruby.rb",
"lib/ip2proxy_ruby/i2p_database_config.rb",
"lib/ip2proxy_ruby/i2p_ip_data.rb",
"lib/ip2proxy_ruby/i2p_string_data.rb",
"lib/ip2proxy_ruby/ip2proxy_config.rb",
"lib/ip2proxy_ruby/ip2proxy_record.rb",
"spec/assets/PX12.SAMPLE.BIN",
"spec/ip2proxy_ruby_database_spec.rb",
"spec/spec_helper.rb",
"rb/data/PX12.SAMPLE.BIN"
]
if s.respond_to?(:metadata=)
s.metadata = {
"bug_tracker_uri" => "https://github.com/ip2location/ip2proxy-ruby/issues",
"documentation_uri" => "https://www.rubydoc.info/gems/ip2proxy_ruby",
"homepage_uri" => "https://www.ip2location.com",
"source_code_uri" => "https://github.com/ip2location/ip2proxy-ruby",
}
end
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<bindata>, ["~> 2.4.15"])
s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
s.add_development_dependency(%q<rdoc>, [">= 6.3.1"])
s.add_development_dependency(%q<bundler>, [">= 1.2.0"])
else
s.add_dependency(%q<bindata>, ["~> 2.4.15"])
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
s.add_dependency(%q<rdoc>, [">= 6.3.1"])
s.add_dependency(%q<bundler>, [">= 1.2.0"])
end
else
s.add_dependency(%q<bindata>, ["~> 2.4.15"])
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
s.add_dependency(%q<rdoc>, [">= 6.3.1"])
s.add_dependency(%q<bundler>, [">= 1.2.0"])
end
end