-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathMandoline.podspec
24 lines (20 loc) · 983 Bytes
/
Mandoline.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
Pod::Spec.new do |s|
s.name = 'Mandoline'
s.version = '1.0.0'
s.summary = 'A scrolling picker view.'
s.description = <<-DESC
The PickerView is a UIview that provides a smooth "picking" interface.
In order to get the most out of it, a cell should implement the Selectable protocol that dictates whether a cell `isSelectable`.
DESC
s.homepage = 'https://github.com/blueapron/Mandoline'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/blueapron/Mandoline.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'Mandoline/Classes/**/*'
s.resource_bundles = {
'Mandoline' => ['Mandoline/Assets/**/*']
}
s.dependency 'SnapKit', '~> 4.0.0'
end