forked from skywinder/ActionSheetPicker-3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActionSheetPicker-3.0.podspec
29 lines (28 loc) · 1.5 KB
/
ActionSheetPicker-3.0.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
Pod::Spec.new do |spec|
spec.name = 'ActionSheetPicker-3.0'
spec.version = '2.5.1'
spec.summary = 'Easily present an ActionSheet with a PickerView, allowing the user to select from a number of immutable options.'
spec.description = <<-DESC
Better version of ActionSheetPicker with support iOS7 and other improvements:
- Spawn pickers with convenience function - delegate or reference not required. Just provide a target/action callback.
- Add buttons to UIToolbar for quick selection (see ActionSheetDatePicker below)
- Delegate protocol available for more control
- Universal (iPhone/iPod/iPad)
DESC
spec.homepage = 'https://github.com/skywinder/ActionSheetPicker-3.0'
spec.screenshots = [ "http://skywinder.github.io/ActionSheetPicker-3.0/Screenshots/date.png",
"http://skywinder.github.io/ActionSheetPicker-3.0/Screenshots/distance.png",
"http://skywinder.github.io/ActionSheetPicker-3.0/Screenshots/ipad.png",
"http://skywinder.github.io/ActionSheetPicker-3.0/Screenshots/string.png"]
spec.license = 'BSD'
spec.authors = {
'Petr Korolev' => 'https://github.com/skywinder',
'Tim Cinel' => '[email protected]'
}
spec.social_media_url = "https://twitter.com/skywinder/"
spec.platform = :ios, "6.1"
spec.source = { :git => 'https://github.com/skywinder/ActionSheetPicker-3.0.git', :tag => "#{spec.version}" }
spec.source_files = 'Pickers/*.{h,m}'
spec.framework = 'UIKit'
spec.requires_arc = true
end