Files
JBChartView/SKBounceAnimation/1.0/SKBounceAnimation.podspec
T
Fabio Pelosin 301a108173 Back to green.
2012-10-03 15:33:19 +02:00

18 lines
1.3 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Pod::Spec.new do |s|
s.name = "SKBounceAnimation"
s.version = "1.0"
s.summary = "CAKeyframeAnimation subclass that lets quickly and easily set a number of bounces, and start and end values, and creates an animation."
s.description = <<-DESC
`SKBounceAnimation` is a `CAKeyframeAnimation` subclass that creates an animation for you based on start and end values and a number of bounces. Its based on the math and technology in this blogpost: [khanlou.com/2012/01/cakeyframeanimation-make-it-bounce/](http://khanlou.com/2012/01/cakeyframeanimation-make-it-bounce/) which in turn was based partially on Matt Gallaghers work here: [cocoawithlove.com/2008/09/parametric-acceleration-curves-in-core.html](http://cocoawithlove.com/2008/09/parametric-acceleration-curves-in-core.html).
DESC
s.homepage = "https://github.com/khanlou/SKBounceAnimation"
s.license = { :type => 'Copyright (c) 2012 Soroush Khanlou', :file => 'LICENSE.md' }
s.author = { "khanlou" => "soroush@khanlou.com" }
s.source = { :git => "https://github.com/khanlou/SKBounceAnimation.git", :tag => "v1.0" }
s.platform = :ios
s.source_files = 'SKBounceAnimation/SKBounceAnimation.{h,m}'
s.frameworks = 'CoreGraphics', 'QuartzCore'
end