forked from msaps/MSSTabbedPageViewController
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMSSTabbedPageViewController.podspec
More file actions
24 lines (19 loc) · 1.19 KB
/
MSSTabbedPageViewController.podspec
File metadata and controls
24 lines (19 loc) · 1.19 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
Pod::Spec.new do |s|
s.name = "MSSTabbedPageViewController"
s.version = "0.5.1"
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/DigDes/MSSTabbedPageViewController"
s.screenshots = "https://raw.githubusercontent.com/DigDes/MSSTabbedPageViewController/develop/Resource/MSSTabbedPageViewController.gif"
s.license = "MIT"
s.author = { "Merrick Sapsford" => "merrick@sapsford.tech" }
s.social_media_url = "http://twitter.com/MerrickSapsford"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/DigDes/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'
end