forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CocoaPods#2039 from elchbenny/master
added podspec for BMExtendablePageController
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
BMExtendablePageController/0.1.0/BMExtendablePageController.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Be sure to run `pod spec lint BMExtendablePageController.podspec' to ensure this is a | ||
Pod::Spec.new do |s| | ||
s.name = "BMExtendablePageController" | ||
s.version = "0.1.0" | ||
s.summary = "An UIPageController replacement supporting custom and continuous transitions." | ||
s.description = <<-DESC | ||
A replacement for UIPageController / NSPageController, because we need custom transitions!\ | ||
BMExtPageController is a drop in - replacement and mirrors almost all functionalities found in UIPageController so if you’ve been starting a project already and you feel limited with default transition styles and behavior offered - give BMExtPageController a try. | ||
DESC | ||
|
||
s.homepage = "https://github.com/elchbenny/BMExtPageController" | ||
s.license = 'MIT' | ||
s.author = { "Benjamin Müller" => "[email protected]" } | ||
s.source = { :git => "https://github.com/elchbenny/BMExtPageController.git", :tag => "0.1.0" } | ||
|
||
s.ios.deployment_target = '5.0' | ||
s.osx.deployment_target = '10.7' | ||
|
||
s.source_files = 'BMExtendablePageController', 'BMExtendablePageController/**/*.{h,m}' | ||
|
||
s.framework = 'QuartzCore' | ||
|
||
s.requires_arc = true | ||
end |