Skip to content

Instantly share code, notes, and snippets.

@rjyo
Created September 27, 2013 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjyo/6725006 to your computer and use it in GitHub Desktop.
Save rjyo/6725006 to your computer and use it in GitHub Desktop.
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