-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIPData.podspec
More file actions
25 lines (23 loc) · 1.07 KB
/
Copy pathIPData.podspec
File metadata and controls
25 lines (23 loc) · 1.07 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
Pod::Spec.new do |s|
s.name = "IPData"
s.version = "0.1.0"
s.summary = "Official Objective-C client for the ipdata.info IP geolocation, ASN, and threat-intelligence API."
s.description = <<-DESC
Official Objective-C SDK for ipdata.info -- a free, fast IP geolocation,
ASN, and threat-intelligence API. Look up country, city, ASN, timezone,
currency, and security flags (proxy/VPN/Tor/hosting) for any IPv4 or IPv6
address.
DESC
s.homepage = "https://ipdata.info"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "ipdata.info" => "support@ipdata.info" }
s.source = { :git => "https://github.com/IPDataInfo/ipdata-objc.git", :tag => s.version.to_s }
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "12.0"
s.watchos.deployment_target = "4.0"
s.source_files = "Sources/IPData/**/*.{h,m}"
s.public_header_files = "Sources/IPData/include/*.h"
s.frameworks = "Foundation"
s.requires_arc = true
end