Uh oh!
There was an error while loading. Please reload this page.
forked from icanzilb/EasyAnimation
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEasyAnimation.podspec
More file actions
Latest commit
26 lines (22 loc) · 1.11 KB
/
Copy pathEasyAnimation.podspec
File metadata and controls
26 lines (22 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.newdo |s|
s.name="EasyAnimation"
s.version="2.2"
s.summary="A Swift library to take the power of UIView.animateWithDuration(_:, animations:...) to a whole new level!"
s.description=<<-DESC
EasyAnimation extends the animation methods that are built-in in UIKit and allows you to:
* animate layer properties from within animateWithDuration:animations:
* mix view and layer animations together
* spring animations for view and layers
* chain easily animation together
* cancel animation chains
DESC
s.homepage="https://github.com/icanzilb/EasyAnimation"
s.screenshots="https://raw.githubusercontent.com/icanzilb/EasyAnimation/master/etc/EA.png"
s.license='MIT'
s.author={"Marin Todorov"=>"touch-code-magazine@underplot.com"}
s.source={:git=>"https://github.com/icanzilb/EasyAnimation.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/icanzilb'
s.platform=:ios,'9.0'
s.requires_arc=true
s.source_files='EasyAnimation/**/*.swift'
end