forked from edison9888/MVModalTransitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMVModalTransitions.podspec
More file actions
28 lines (16 loc) · 886 Bytes
/
MVModalTransitions.podspec
File metadata and controls
28 lines (16 loc) · 886 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
27
28
Pod::Spec.new do |s|
s.name = "MVModalTransitions"
s.version = "1.0.0"
s.summary = "iOS 7 style custom transition classes for presenting interface rotation friendly modal view controllers"
s.homepage = "https://github.com/bizz84/MVModalTransitions"
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { "Andrea Bizzotto" => "bizz84@gmail.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/bizz84/MVModalTransitions.git", :tag => '1.0.0' }
s.source_files = 'MVModalTransition/*.{h,m}'
s.screenshots = ["https://github.com/bizz84/MVModalTransitions/raw/master/Screenshots/ModalPortrait.png"]
s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics'
s.dependency 'Masonry', '~> 0.5.3'
s.ios.deployment_target = '6.0' # minimum SDK with autolayout
s.requires_arc = true
end