forked from lotum/ModularAnimation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModularAnimation.podspec
25 lines (17 loc) · 958 Bytes
/
ModularAnimation.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
Pod::Spec.new do |s|
s.name = "ModularAnimation"
s.version = "0.7"
s.summary = "A small framework that seperates the playback and the animation description from the (UIView-)animation itself"
s.description = <<-DESC
A small framework that seperates the playback and the animation description from the (UIView-)animation itself.
ModularAnimation gets rid of the drawbacks of UIView.animate():
- Your animation code will be easy to understand
- You will be able to reuse your animation description on different views
DESC
s.homepage = "https://github.com/LOTUM/ModularAnimation"
s.license = "Apache License, Version 2.0"
s.author = { "Martin" => "[email protected]" }
s.source = { :git => "https://github.com/LOTUM/ModularAnimation.git", :tag => "#{s.version}" }
s.source_files = "ModularAnimation/**/*.{h,swift}"
s.ios.deployment_target = "9.0"
end