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.
- Loading branch information
Pierre Felgines
committed
Jul 17, 2013
1 parent
d2ece37
commit 2fe0aa1
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
ADTransitionController/1.0.0/ADTransitionController.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,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "ADTransitionController" | ||
s.version = "1.0.0" | ||
s.summary = "Drop-in replacement for UINavigationController with custom transition animations." | ||
s.description = <<-DESC | ||
ADTransitionController is a drop-in replacement for UINavigationController | ||
with custom transition animations. | ||
Concept was described on Applidium's | ||
[website][http://applidium.com/en/news/uinavigationcontroller_with_custom_transitions/]. | ||
DESC | ||
s.homepage = "http://applidium.github.io/ADTransitionController/" | ||
s.screenshots = "http://applidium.com/en/news/uinavigationcontroller_with_custom_transitions/adtransitioncontroller.jpg?13739936" | ||
s.license = { :type => 'NetBSD', :file => 'LICENSE' } | ||
s.author = { "Applidium" => "contact@applidium.com" } | ||
s.source = { :git => "https://github.com/applidium/ADTransitionController.git", :tag => "v1.0.0" } | ||
s.platform = :ios, '5.0' | ||
s.ios.deployment_target = '5.0' | ||
s.source_files = 'ADTransitionController/**/*.{h,m}' | ||
s.exclude_files = 'TransitionDemo/**/*.{h,m}' | ||
s.frameworks = 'QuartzCore' | ||
end |