-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMultiPageController.podspec
23 lines (18 loc) · 1.07 KB
/
MultiPageController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'MultiPageController'
s.version = '0.2.2'
s.summary = 'UIPageController-like component that allows fast navigation by horizontal scrolling'
s.description = <<-DESC
Component inspired by UIPageController that allows fast navigation by scrolling to switch to a different ViewController.
ViewControllers are lazily instantiated the first time it gets activated.
An item gets automatically selected if the user stop scrolling, or the user can tap an element o select it.
DESC
s.homepage = 'https://github.com/snit-ram/MultiPageController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Rafael Martins' => '[email protected]' }
s.source = { :git => 'https://github.com/snit-ram/MultiPageController.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'MultiPageController/Source/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
s.user_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end