forked from stefanceriu/SCStackViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSCStackViewController.podspec
More file actions
19 lines (18 loc) · 1.2 KB
/
SCStackViewController.podspec
File metadata and controls
19 lines (18 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'SCStackViewController'
s.version = '3.0.1'
s.platform = :ios
s.ios.deployment_target = '5.0'
s.summary = 'SCStackViewController is a container controller which allows you to stack other view controllers and build custom transitions between them.'
s.description = <<-DESC
SCStackViewController is a container view controller which allows you to stack other view controllers on the top/left/bottom/right of the root and build custom transitions between them while providing correct physics and appearance calls.
DESC
s.homepage = 'https://github.com/stefanceriu/SCStackViewController'
s.author = { 'Stefan Ceriu' => '[email protected]' }
s.source = { :git => 'https://github.com/stefanceriu/SCStackViewController.git', :tag => "v#{s.version}" }
s.license = { :type => 'MIT License', :file => 'LICENSE' }
s.source_files = 'SCStackViewController/*', 'SCStackViewController/Layouters/*', 'SCStackViewController/Layouters/Reversed/*'
s.requires_arc = true
s.frameworks = 'UIKit', 'QuartzCore', 'CoreGraphics', 'Foundation'
s.screenshots = ["https://dl.dropboxusercontent.com/u/12748201/Recordings/v3.0.0/Resizing.gif"]
end