-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPunycode.podspec
20 lines (18 loc) · 975 Bytes
/
Punycode.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Punycode"
s.version = "3.0.0"
s.summary = "A Pure Swift library for encode and decode punycoded strings supporting iOS, macOS, tvOS, watchOS, and visionOS."
s.homepage = "https://github.com/gumob/PunycodeSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kojiro Futamura" => "gumob.dev@gmail.com" }
s.frameworks = 'Foundation'
s.requires_arc = true
s.source = { :git => "https://github.com/gumob/PunycodeSwift.git", :tag => "#{s.version}" }
s.source_files = "Sources/*.{swift}"
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'
end