forked from veader/V8HorizontalPickerView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV8HorizontalPickerView.podspec
More file actions
26 lines (19 loc) · 967 Bytes
/
V8HorizontalPickerView.podspec
File metadata and controls
26 lines (19 loc) · 967 Bytes
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
Pod::Spec.new do |s|
s.name = "V8HorizontalPickerView"
s.version = "0.0.1"
s.summary = "Horizontal UIPickerView Control for iOS."
s.description = <<-DESC
A control for iOS apps which allows a user to select from multiple options by swiping
the control left and right. The option which appears in the center is selected. The
control is not allowed to come to rest in between options. One option will always be
selected as movement comes to a stop.
DESC
s.homepage = "https://github.com/veader/V8HorizontalPickerView"
s.license = { :type => 'zlib/libpng', :file => 'LICENSE' }
s.author = { "Shawn Veader" => "shawn@veader.org" }
s.source = { :git => "https://github.com/veader/V8HorizontalPickerView.git", :commit => '2d745e7737'}
s.platform = :ios
s.source_files = 'Classes', '*.{h,m}'
s.public_header_files = '*.h'
s.requires_arc = false
end