-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCKTextField.podspec
28 lines (19 loc) · 918 Bytes
/
CKTextField.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
27
28
Pod::Spec.new do |s|
s.name = "CKTextField"
s.version = "0.3.1"
s.summary = "An improved version of the original UITextField."
s.description = <<-DESC
CKTextField was started as an enhanced UITextField which
uses subtle animations to add to a better user
experience.
DESC
s.homepage = "https://github.com/JaNd3r/CKTextField"
s.screenshots = "https://raw.githubusercontent.com/JaNd3r/CKTextField/master/CKTextFieldDemo.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Christian Klaproth" => "[email protected]" }
s.social_media_url = "http://twitter.com/JaNd3r"
s.platform = :ios, "8.0"
s.requires_arc = true
s.source = { :git => "https://github.com/JaNd3r/CKTextField.git", :tag => "0.3.1" }
s.source_files = "CKTextField/*.{h,m}"
end