forked from msaps/MSSTabbedPageViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMSSTabbedPageViewController.podspec
25 lines (20 loc) · 1.25 KB
/
MSSTabbedPageViewController.podspec
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
Pod::Spec.new do |s|
s.name = "MSSTabbedPageViewController"
s.version = "0.3.11"
s.summary = "A custom container UIViewController which provides a simple to implement page view controller with scrolling tab bar"
s.description = <<-DESC
MSSTabbedPageViewController is a UIViewController that provides a simple to implement page view controller with scrolling tab bar. Also includes a UIPageViewController wrapper that provides improved data source and delegation methods.
DESC
s.homepage = "https://github.com/MerrickSapsford/MSSTabbedPageViewController"
s.screenshots = "https://raw.githubusercontent.com/MerrickSapsford/MSSTabbedPageViewController/develop/Resource/MSSTabbedPageViewController.gif"
s.license = "MIT"
s.author = { "Merrick Sapsford" => "[email protected]" }
s.social_media_url = "http://twitter.com/MerrickSapsford"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/MerrickSapsford/MSSTabbedPageViewController.git", :tag => s.version.to_s }
s.requires_arc = true
s.source_files = "MSSTabbedPageViewController/Classes", "Source/**/*.{h,m}"
s.resources = ['Source/**/*.{xib}']
s.frameworks = 'UIKit'
s.deprecated_in_favor_of = 'Tabman'
end