-
Notifications
You must be signed in to change notification settings - Fork 3
/
EastAsianWidth.podspec
26 lines (21 loc) · 1015 Bytes
/
EastAsianWidth.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
Pod::Spec.new do |s|
s.name = "EastAsianWidth"
s.version = "1.0.1"
s.summary = "Extension of Swift String API to deal with East Asian Width"
s.description = <<-DESC
Extension of Swift String API to deal with East Asian Width.
The most generally use case is to classify unicode scalar value as **Fullwidth** (全角) or **Halfwidth** (半角).
East Asian Width is specified as Unicode® Standard Annex #11.
see: http://www.unicode.org/unicode/reports/tr11/
DESC
s.homepage = "https://github.com/ukitaka/EastAsianWidth.swift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "ukitaka" => "[email protected]" }
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/ukitaka/EastAsianWidth.swift.git", :tag => "#{s.version}" }
s.source_files = "Sources/*.swift"
s.requires_arc = true
end