forked from mysterioustrousers/MTAnimation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MTAnimation.podspec
16 lines (16 loc) · 1.11 KB
/
MTAnimation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "MTAnimation"
s.version = "0.1.4"
s.summary = "Animate with easing functions using block methods similar to UIKit."
s.description = <<-DESC
Allows you to animate views in your app in the way you're familiar with (e.g. [UIKit animateWithDuration:animations:]) but adds 25+ easing functions (from jQuery) to make your animations more visceral.
DESC
s.homepage = "https://github.com/mysterioustrousers/MTAnimation"
s.license = 'MIT'
s.author = { "Adam Kirk" => "atomkirk@gmail.com" }
s.source = { :git => "https://github.com/mysterioustrousers/MTAnimation.git", :tag => "#{s.version}" }
s.platform = :ios, '5.0'
s.source_files = 'MTAnimation/UIView+MTAnimation.{h,m}', 'MTAnimation/MTTimingFunctions.{h,c}', 'MTAnimation/MTMatrixInterpolation.{h,c}', 'MTAnimation/MTAnimationTypes.h'
s.frameworks = 'QuartzCore', 'Foundation', 'UIKit', 'CoreGraphics'
s.requires_arc = true
end