-
Notifications
You must be signed in to change notification settings - Fork 28
/
DayDatePicker.podspec
21 lines (17 loc) · 1.06 KB
/
DayDatePicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'DayDatePicker'
s.version = '1.8'
s.summary = 'A custom and customizable UIDatePicker which displays the day of the week alongside the day column'
s.description = <<-DESC
A custom and customizable UIDatePicker which displays the day of the week alongside the day column. You can customize the appearance and behaviour of the control.
DESC
s.homepage = 'https://github.com/hughbe/day-date-picker'
s.screenshots = 'https://raw.githubusercontent.com/hughbe/day-date-picker/master/resources/screenshots/1.png', 'https://raw.githubusercontent.com/hughbe/day-date-picker/master/resources/screenshots/2.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hughbe' => 'hughbellars@gmail.com' }
s.source = { :git => 'https://github.com/hughbe/day-date-picker.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = '4.0'
s.source_files = 'DayDatePicker/Classes/**/*'
s.frameworks = 'UIKit'
end