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
33 lines (31 loc) · 2.06 KB
/
SCStackViewController.podspec
File metadata and controls
33 lines (31 loc) · 2.06 KB
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
29
30
31
32
33
Pod::Spec.new do |s|
s.name = 'SCStackViewController'
s.version = '2.0.0'
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. It was build with the following points in mind:
* Simple to understand and modify
* Left/right and top/bottom stacking
* Correct physics
* Correct appearance calls
* Customizable transitions
* Pagination
* Customizable interaction area
* Completion blocks for everything'
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/Plain.gif",
"https://dl.dropboxusercontent.com/u/12748201/Recordings/Reversed.gif",
"https://dl.dropboxusercontent.com/u/12748201/Recordings/Sliding.gif",
"https://dl.dropboxusercontent.com/u/12748201/Recordings/Parallax.gif",
"https://dl.dropboxusercontent.com/u/12748201/Recordings/GoogleMaps.gif",
"https://dl.dropboxusercontent.com/u/12748201/Recordings/MerryGoRound.gif"]
end