Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Add] APLPageViewControllerDataSource (0.1.0) #7762

Merged
merged 1 commit into from Feb 7, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,20 @@

Pod::Spec.new do |s|
s.name = "APLPageViewControllerDataSource"
s.version = "0.1.0"
s.summary = "APLPageViewControllerDataSource is an array based data source for UIPageViewController."
s.description = <<-DESC
APLPageViewControllerDataSource provides an index based API on top of the viewControllerBeforeViewController and viewControllerAfterViewController API of UIPageViewController.
DESC
s.homepage = "https://github.com/apploft/APLPageViewControllerDataSource"
s.license = 'MIT'
s.author = { "Tobias Conradi" => "tconradi@apploft.de" }
s.source = { :git => "https://github.com/apploft/APLPageViewControllerDataSource.git", :tag => s.version.to_s }

s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
s.requires_arc = true

s.source_files = 'Classes', 'Classes/**/*.{h,m}'
s.public_header_files = 'Classes/**/*.h'
end