-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Punycode-Cocoa.podspec
26 lines (23 loc) · 1.11 KB
/
Punycode-Cocoa.podspec
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
#
# Be sure to run `pod lib lint Punycode-Cocoa.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Punycode-Cocoa"
s.version = "2.0"
s.summary = "Punycode/IDNA category on NSString, based on RFC 3492, RFC 3490."
s.description = <<-DESC
A simple punycode/IDNA category on NSString, based on code and documentation from RFC 3492 and RFC 3490. Use this to convert internationalized domain names (IDN) between Unicode and ASCII.
déjà.vu.example → xn--dj-kia8a.vu.example
DESC
s.homepage = "https://github.com/Wevah/Punycode-Cocoa"
s.license = 'BSD'
s.authors = { "Nate Weaver (Wevah)" => "wevah [snail] derailer [splot] org" }
s.source = { :git => "https://github.com/Wevah/Punycode-Cocoa.git", :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'Shared/**/*'
end