-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSACodedTextField.podspec
29 lines (19 loc) · 1.19 KB
/
SACodedTextField.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
29
@version = "1.0"
Pod::Spec.new do |s|
s.name = "SACodedTextField"
s.version = @version
s.summary = "A simple text field for building 'activation code text field' like [WhatsApp](https://www.whatsapp.com/) for iOS"
s.description = <<-DESC
SACodedTextField is a simple text field for building 'activation code text field' like [WhatsApp](https://www.whatsapp.com/). It is highly customizable.
DESC
s.homepage = "https://github.com/SandeepAggarwal/SACodedTextField"
s.screenshots = "https://github.com/SandeepAggarwal/SACodedTextField/raw/master/Previews/SACodedTF2.gif", "https://github.com/SandeepAggarwal/SACodedTextField/raw/master/Previews/SACodedTF1.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Sandeep Aggarwal" => "[email protected]" }
s.social_media_url = "https://twitter.com/sandeepCool77"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/SandeepAggarwal/SACodedTextField.git", :tag => "#{s.version}" }
s.source_files = "ActivationCodeTextField/ActivationCodeTextField.{h,m}"
s.framework = "UIKit"
s.requires_arc = true
end