-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathTLDExtractSwift.podspec
23 lines (20 loc) · 1.03 KB
/
TLDExtractSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "TLDExtractSwift"
s.version = "3.0.0"
s.summary = "A Pure Swift library for extracting TLD supporting macOS, iOS, tvOS, watchOS, and visionOS."
s.homepage = "https://github.com/gumob/TLDExtractSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kojiro Futamura" => "[email protected]" }
s.frameworks = 'Foundation'
s.requires_arc = true
s.source = { :git => "https://github.com/gumob/TLDExtractSwift.git", :tag => "#{s.version}" }
s.source_files = "Sources/*.{swift}"
s.resources = "Resources/*.dat"
s.osx.deployment_target = "10.13"
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
s.watchos.deployment_target = "4.0"
s.visionos.deployment_target = "1.0"
s.swift_version = '5.0'
s.dependency "Punycode", "~> 3.0"
end