-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathMBPullDownController.podspec
More file actions
18 lines (18 loc) · 936 Bytes
/
MBPullDownController.podspec
File metadata and controls
18 lines (18 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "MBPullDownController"
s.version = "1.2.0"
s.summary = "An iOS container view controller for pullable scroll view interfaces."
s.description = <<-DESC
MBPullDownController accepts two view controllers, which it presents one above the other.
The front view controller is configured to accept a pull interaction which it utilizes to show or hide back view controller.
DESC
s.homepage = "http://www.bukovinski.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Matej Bukovinski' => 'matej@bukovinski.com' }
s.source = { :git => "https://github.com/matej/MBPullDownController.git", :tag => s.version.to_s }
s.source_files = 'MBPullDownController/*.{h,m}'
s.framework = "QuartzCore"
s.platform = :ios
s.requires_arc = true
s.ios.deployment_target = '8.0'
end