-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBKSlidingViewController.podspec
More file actions
22 lines (18 loc) · 1.28 KB
/
BKSlidingViewController.podspec
File metadata and controls
22 lines (18 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "BKSlidingViewController"
s.version = "1.1.0"
s.summary = "A side-scrolling view controller container class with a minimal, UITabBarController-like API."
s.description = <<-DESC
UIPageViewController seems somewhat rigidly designed for paginated content, and is very efficient at lazily instantiating many view controllers with a particular pattern (before/after) and specific spatial metaphors. While it can do many things well, customization is ultimately limited by permissible alterations of the UIPageViewController class.
BKSlidingViewController is an open-source substitute for applications desiring view controllers laid out horizontally, presented with a UITabBarController-like API.
DESC
s.homepage = "https://github.com/Basket/BKSlidingViewController"
s.license = 'MIT'
s.author = { "Andrew Toulouse" => "andrew@atoulou.se" }
s.source = { :git => "https://github.com/Basket/BKSlidingViewController.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.dependency 'BKDeltaCalculator', '~> 1.0'
s.source_files = 'BKSlidingViewController/*.{h,m}'
s.frameworks = 'UIKit'
end