Skip to content

Commit a5be980

Browse files
committed
added podspec
1 parent 7841803 commit a5be980

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

DateTextField.podspec

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

0 commit comments

Comments
 (0)