File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Be sure to run `pod spec lint SimpleCheckbox.podspec' to ensure this is a
3
+ # valid spec and to remove all comments including this before submitting the spec.
4
+ #
5
+ # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
6
+ # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7
+ #
8
+
9
+ Pod ::Spec . new do |s |
10
+
11
+ s . name = "DateTextField"
12
+ s . version = "2.1.0"
13
+ s . summary = "A date input textfield"
14
+ s . swift_version = '5.1'
15
+
16
+ s . description = <<-DESC
17
+ A Swift UITextField subclass designed to make entering dates easier, faster and more flexible than the standard UIDatePicker.
18
+ DESC
19
+
20
+ s . homepage = "https://github.com/BeauNouvelle/DateTextField"
21
+
22
+ s . license = { :type => "MIT" , :file => "LICENSE" }
23
+ s . author = "Beau Nouvelle"
24
+ s . social_media_url = "http://twitter.com/BeauNouvelle"
25
+
26
+ s . platform = :ios , "10.0"
27
+
28
+ s . source = { :git => "https://github.com/BeauNouvelle/DateTextField.git" , :tag => "#{ s . version } " }
29
+
30
+ s . source_files = "DateTextField/*.{swift}"
31
+
32
+ end
You can’t perform that action at this time.
0 commit comments