forked from devedbox/AXAnimationChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AXAnimationChain.podspec
28 lines (22 loc) · 1.02 KB
/
AXAnimationChain.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
27
28
Pod::Spec.new do |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" => "[email protected]" }
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