-
Notifications
You must be signed in to change notification settings - Fork 12
/
DateRangePicker.podspec
21 lines (18 loc) · 1.32 KB
/
DateRangePicker.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 = 'DateRangePicker'
s.version = '6.1'
s.homepage = 'https://github.com/Timing-GmbH/DateRangePicker'
s.summary = 'The best (?) date range picker control for OS X.'
s.screenshots = 'https://raw.githubusercontent.com/Timing-GmbH/DateRangePicker/master/Screenshots/Popover.png', 'https://raw.githubusercontent.com/Timing-GmbH/DateRangePicker/master/Screenshots/ControlVariants.png', 'https://raw.githubusercontent.com/Timing-GmbH/DateRangePicker/master/Screenshots/Menu.png'
s.author = { 'Daniel Alm' => 'CocoaPods@danielalm.de' }
s.license = { :type => 'ISC (simplified BSD)', :file => 'LICENSE' }
s.social_media_url = 'https://twitter.com/daniel_a_a'
s.platforms = { :osx => '10.13' }
s.source_files = 'Sources/DateRangePicker/*.{h,swift}'
s.resources = ['Sources/DateRangePicker/Resources/*.lproj/*', 'Sources/DateRangePicker/Resources/*.xcassets']
s.module_name = 'DateRangePicker'
s.source = { :git => 'https://github.com/Timing-GmbH/DateRangePicker.git', :tag => s.version }
s.requires_arc = true
s.frameworks = 'AppKit', 'Foundation'
s.swift_versions = ['4.2', '5']
end