Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
Update podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Fox authored and Tyler Fox committed May 4, 2015
1 parent 6bb75cb commit 9d1d44c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions INTUAnimationEngine.podspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Pod::Spec.new do |s|
s.name = "INTUAnimationEngine"
s.version = "1.3.0"
s.version = "1.3.1"
s.homepage = "https://github.com/intuit/AnimationEngine"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Tyler Fox" => "[email protected]" }
s.source = { :git => "https://github.com/intuit/AnimationEngine.git", :tag => "v1.3.0" }
s.source = { :git => "https://github.com/intuit/AnimationEngine.git", :tag => "v1.3.1" }
s.source_files = 'INTUAnimationEngine/*.{h,m}'
s.platform = :ios
s.ios.deployment_target = '5.0'
Expand All @@ -15,7 +15,9 @@ Pod::Spec.new do |s|
INTUAnimationEngine provides a friendly interface to drive custom animations using a CADisplayLink, inspired by the UIView block-based animation API. It enables interactive animations (normally driven by user input, such as a pan or pinch gesture) to run automatically over a given duration. It can also be used to get a callback every frame of an animation.
INTUAnimationEngine includes an extensive library of easing functions that can be used to customize animation timing. A complete library of interpolation functions is also included to animate any type of value or property, including those that are not animatable by Core Animation.
INTUAnimationEngine includes an extensive library of easing functions that can be used to customize animation timing, as well as a complete library of interpolation functions to animate any type of value or property including those that are not animatable by Core Animation.
The project also includes a standalone spring physics library to simulate damped harmonic motion. This is used under the hood to power a spring animation API on INTUAnimationEngine that allows full control over the damping, stiffness, and mass parameters. Since the spring solver is a completely independent and generic library implemented in pure C, it can be used on its own for many other applications apart from animation.
DESC

s.subspec 'SpringSolver' do |ss|
Expand Down

0 comments on commit 9d1d44c

Please sign in to comment.