forked from mysterioustrousers/MTAnimation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MTAnimation.podspec
19 lines (19 loc) · 1.19 KB
/
MTAnimation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "MTAnimation"
s.version = "1.2.0"
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" => "[email protected]" }
s.source = { :git => "https://github.com/Labgoo/MTAnimation.git" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'MTAnimation/UIView+MTAnimation.{h,m}', 'MTAnimation/MTTimingFunctions.{h,m}', 'MTAnimation/MTMatrixInterpolation.{h,m}', 'MTAnimation/MTAnimationTypes.h'
s.frameworks = 'QuartzCore', 'Foundation'
s.ios.frameworks = 'UIKit', 'CoreGraphics'
s.osx.frameworks = 'Cocoa', 'ApplicationServices'
s.requires_arc = true
end