Skip to content

Commit

Permalink
Merge pull request CocoaPods#2039 from elchbenny/master
Browse files Browse the repository at this point in the history
added podspec for BMExtendablePageController
  • Loading branch information
orta committed May 5, 2013
2 parents 9064087 + 2462775 commit 74c6e42
Showing 1 changed file with 24 additions and 0 deletions.
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

0 comments on commit 74c6e42

Please sign in to comment.