-
Notifications
You must be signed in to change notification settings - Fork 16
/
PMEDatePicker.podspec
31 lines (21 loc) · 1.16 KB
/
PMEDatePicker.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
30
31
Pod::Spec.new do |s|
s.name = "PMEDatePicker"
s.version = "0.1.0"
s.summary = "DatePicker with configurable date components"
s.description = <<-DESC
* compared to UIDatePicker you decide if you want to display day, month, year, hour, minute and am/pm in any combination
* supported date symbols are yyyy, MMM, d, HH, h, mm, j, a
* order of the date components, month and AM/PM symbols is defined by the current NSLocale
* availability of AM / PM is automatically defined by NSLocale except you explicitely set it
* supports minimumDate and maximumDate
* UIPickerView subclass
DESC
s.homepage = "https://github.com/michaelkamphausen/PMEDatePicker"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Michael Kamphausen'
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/michaelkamphausen/PMEDatePicker.git", :tag => s.version.to_s }
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
s.requires_arc = true
end