forked from artemkrachulov/AKMaskField
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AKMaskField.podspec
25 lines (19 loc) · 939 Bytes
/
AKMaskField.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 = "AKMaskField"
s.version = "2.0.3"
s.homepage = "https://github.com/artemkrachulov/AKMaskField"
s.summary = "Enter data in the fixed quantity and in the certain format."
s.description = <<-DESC
AKMaskField is UITextField subclass which allows enter data in the fixed quantity and in the certain format (credit cards, telephone numbers, dates, etc.). You only need setup mask string and mask template string visible for the user.
DESC
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Artem Krachulov" => "[email protected]" }
# Source Info
s.ios.deployment_target = "8.0"
s.source = {
:git => "https://github.com/artemkrachulov/AKMaskField.git",
:tag => 'v'+s.version.to_s
}
s.source_files = "AKMaskField/*.{swift}"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end