-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipapi-rb.gemspec
More file actions
41 lines (34 loc) · 1.65 KB
/
ipapi-rb.gemspec
File metadata and controls
41 lines (34 loc) · 1.65 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
require_relative 'lib/ip_api/version'
Gem::Specification.new do | spec |
spec.name = 'ipapi-rb'
spec.version = IpApi::VERSION
spec.authors = [ 'Kristoph Cichocki-Romanov' ]
spec.email = [ 'rubygems.org@kristoph.net' ]
spec.summary =
"The IpApi gem implements a lightweight interface to the IP-API.com geolocation " \
"API for IP address and domain lookups."
spec.description =
"The IpApi gem implements a lightweight interface to the IP-API.com geolocation " \
"API. IP-API provides location and network information for any IP address or domain " \
"name in JSON format.\n" \
"\n" \
"This gem supports both the free endpoint (rate-limited, HTTP only) and the Pro " \
"endpoint (unlimited, HTTPS) with automatic endpoint selection based on API key " \
"presence."
spec.license = 'MIT'
spec.homepage = 'https://github.com/EndlessInternational/ipapi-rb'
spec.metadata = {
'source_code_uri' => 'https://github.com/EndlessInternational/ipapi-rb',
'bug_tracker_uri' => 'https://github.com/EndlessInternational/ipapi-rb/issues',
}
spec.required_ruby_version = '>= 3.0'
spec.files = Dir[ "lib/**/*.rb", "bin/ipapi", "LICENSE", "README.md", "ipapi-rb.gemspec" ]
spec.bindir = 'bin'
spec.executables = [ 'ipapi' ]
spec.require_paths = [ "lib" ]
spec.add_runtime_dependency 'faraday', '~> 2'
spec.add_runtime_dependency 'dynamicschema', '~> 2'
spec.add_development_dependency 'minitest', '~> 5.25'
spec.add_development_dependency 'debug', '~> 1.9'
spec.add_development_dependency 'vcr', '~> 6.3'
end