- Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathYetAnotherAnimationLibrary.podspec
More file actions
Latest commit
26 lines (19 loc) · 976 Bytes
/
Copy pathYetAnotherAnimationLibrary.podspec
File metadata and controls
26 lines (19 loc) · 976 Bytes
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="YetAnotherAnimationLibrary"
s.version="1.5.0"
s.summary="Designed for gesture-driven animations. Simple, fast and extensible."
s.description=<<-DESC
Designed for gesture-driven animations. Simple, fast and extensible.
It is written in pure swift with protocol oriented design and extensive use of generics.
DESC
s.homepage="https://github.com/lkzhao/YetAnotherAnimationLibrary"
s.license='MIT'
s.author={"Luke"=>"lzhaoyilun@gmail.com"}
s.source={:git=>"https://github.com/lkzhao/YetAnotherAnimationLibrary.git",:tag=>s.version.to_s}
s.ios.deployment_target='8.0'
s.tvos.deployment_target='9.0'
s.ios.frameworks='UIKit','Foundation'
s.requires_arc=true
s.swift_versions=['5.0']
s.source_files='Sources/**/*.swift'
end