- Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathAXAnimationChain.podspec
More file actions
Latest commit
28 lines (22 loc) · 1.02 KB
/
Copy pathAXAnimationChain.podspec
File metadata and controls
28 lines (22 loc) · 1.02 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
27
28
Pod::Spec.newdo |s|
s.name="AXAnimationChain"
s.version="0.4.1"
s.summary="`AXAnimationChain` is an iOS chain animation manater."
s.description=<<-DESC
`AXAnimationChain` is an iOS chain animation manater which is easy to use.
DESC
s.homepage="https://github.com/devedbox/AXAnimationChain"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"devedbox"=>"devedbox@qq.com"}
s.platform=:ios,"8.0"
s.source={:git=>"https://github.com/devedbox/AXAnimationChain.git",:tag=>s.version}
s.source_files='AXAnimationChain/Classes/*.{h,m}','AXAnimationChain/Classes/CoreAnimation/*.{h,m}'
s.frameworks="UIKit","Foundation","QuartzCore"
s.requires_arc=true
s.subspec'CoreAnimation'do |ss|
ss.source_files='AXAnimationChain/Classes/CoreAnimation/*.{h,m}'
end
s.subspec'CoreMediaTimingFunction'do |sss|
sss.source_files='AXAnimationChain/Classes/CoreAnimation/CAMediaTimingFunction+Extends.{h,m}'
end
end