Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Update Podspec to work for development v2.0 branch #152

Open
wants to merge 1 commit into
base: v2.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions PKRevealController.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'PKRevealController'
s.version = '1.0b2'
s.version = '2.0'
s.platform = :ios, '5.0'
s.license = 'MIT'
s.summary = 'View controller container, enabling you to present multiple controllers on top of one another. '
s.description = 'PKRevealController is a delightful view controller container for iOS, enabling you to present multiple controllers on top of one another. It is easy to set-up and highly flexible. The PKRevealController is the evolution of the ZUUIRevealController but not API compatible with any previous versions. The entire controller was rewritten from the ground up and major changes were inevitable. If you wish to access the older versions, please download one of the tags or checkout the deprecated branch.'
s.author = { 'Philip Kluz' => '[email protected]' }
s.homepage = 'https://github.com/pkluz/PKRevealController'
s.source = { :git => 'https://github.com/pkluz/PKRevealController.git', :tag => "v#{s.version.to_s}" }
s.source_files = 'PKRevealController/Controller/*.{h,m}'
s.source = { :git => 'https://github.com/pkluz/PKRevealController.git', :branch => 'v2.0' }
s.source_files = 'PKRevealController/PKRevealController/*.{h,m}', 'PKRevealController/PKRevealController/**/*.{h,m}', 'PKRevealController/PKRevealController/modules/**/*.{h,m}'
s.framework = 'CoreGraphics', 'QuartzCore'
s.requires_arc = true
end