-
Notifications
You must be signed in to change notification settings - Fork 200
/
EasyAnimation.podspec
26 lines (22 loc) · 1.11 KB
/
EasyAnimation.podspec
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.new do |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