Created
September 27, 2013 06:55
-
-
Save rjyo/6725006 to your computer and use it in GitHub Desktop.
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
Pod::Spec.new do |s| | |
s.name = 'CPAccelerationTimer' | |
s.version = '0.0.1' | |
s.platform = :ios | |
s.license = 'MIT' | |
s.summary = 'Calls a block a given number of times, spread out over a given duration, with the between-calls delays determined by a given Bézier curve. Think of it as an NSTimer with custom acceleration.' | |
s.homepage = 'https://github.com/yangmeyer/CPAccelerationTimer' | |
s.author = { 'Yang Meyer' => 'https://github.com/yangmeyer' } | |
s.source = { :git => 'https://github.com/yangmeyer/CPAccelerationTimer.git' } | |
s.description = 'Calls a block a given number of times, spread out over a given duration, with the between-calls delays determined by a given Bézier curve. Think of it as an NSTimer with custom acceleration.' | |
s.source_files = 'Component/*.{h,c,m}' | |
s.requires_arc = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment