-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipapi.gemspec
More file actions
19 lines (16 loc) · 755 Bytes
/
ipapi.gemspec
File metadata and controls
19 lines (16 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |spec|
spec.name = "ipapi-ruby"
spec.authors = ["Arda Tetik"]
spec.email = ["ardatetik1881@gmail.com"]
spec.version = "1.0.0"
spec.summary = "Ruby bindings for ipquery.io"
spec.description = "Ruby bindings for ipquery.io | A free and performant IP address API"
spec.homepage = "https://github.com/ardatetikbey/ipapi-ruby"
spec.required_ruby_version = ">= 3.1.0"
spec.add_dependency "httparty", "~> 0.23.1"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/ardatetikbey/ipapi-ruby"
spec.metadata["changelog_uri"] = "https://github.com/ardatetikbey/ipapi-ruby/blob/main/CHANGELOG.md"
spec.files = Dir["lib/**/*.rb"]
spec.require_paths = ["lib"]
end