-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResolver.podspec
More file actions
31 lines (23 loc) · 970 Bytes
/
Resolver.podspec
File metadata and controls
31 lines (23 loc) · 970 Bytes
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
Pod::Spec.new do |s|
s.name = "Resolver"
s.version = "1.0.1"
s.summary = "A wrapper for MaxMind DB"
s.description = <<-DESC
A tiny wrapper for libmaxminddb which allows you to lookup
Geo data by IP address.
DESC
s.homepage = "https://github.com/ismycho/Resolver"
s.license = { :type => "APACHE 2.0", :file => "LICENSE" }
s.author = { "Lex Tang" => "khw0212@hanmail.net" }
s.social_media_url = "https://twitter.com/lexrus"
s.platform = :ios, :osx
s.swift_version = "5.0"
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "11.10"
s.source = { :git => "https://github.com/ismycho/Resolver.git",
:tag => s.version }
s.source_files = "Resolver/*.swift", "Resolver/*.{h,c}"
s.ios.public_header_files = "Resolver/*.h", "Resolver/Resolver.h"
s.framework = "Foundation"
s.requires_arc = true
end