forked from kmcgill88/McPicker-iOS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMcPicker.podspec
20 lines (16 loc) · 1.1 KB
/
McPicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'McPicker'
s.version = '0.3.1'
s.summary = 'McPicker is a UIPickerView drop-in solution with animations that is rotation ready.'
s.description = <<-DESC
McPicker is a UIPickerView drop-in solution with animations that is rotation ready. The more string arrays you pass, the more picker components you'll get. You can set custom label or use the defaults. McPicker can be presented as a Popover on iPhone or iPad using showAsPopover or use the default slide up and down style, show.
showAsPopover can be used to display from a UIView or UIBarButtonItem. showAsPopover will always be presented as a Popover, even when used on an iPhone.
DESC
s.homepage = 'https://github.com/kmcgill88/McPicker-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kevin McGill' => '[email protected]' }
s.source = { :git => 'https://github.com/kmcgill88/McPicker-iOS.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'McPicker/Classes/**/*'
s.frameworks = 'UIKit'
end