forked from devedbox/AXAnimationChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AXAnimationChain-Swift.podspec
28 lines (21 loc) · 1.25 KB
/
AXAnimationChain-Swift.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-Swift"
s.version = "0.4.1"
s.summary = "`AXAnimationChain-Swift` is an iOS chain animation kit using swift3.0."
s.description = <<-DESC
`AXAnimationChain-Swift` is an iOS chain animation kit using swift3.0 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/UIView+ChainAnimator.{h,m}', 'AXAnimationChain/Classes/AXChainAnimator.{h,m}', 'AXAnimationChain/Classes/CoreAnimation/*.{h,m}', 'AXAnimationChain/Classes/Swifty/*.swift'
s.source_files = 'AXAnimationChain/Classes/Swifty/*.swift'
#s.xcconfig = {'SWIFT_INCLUDE_PATHS' => '$(PODS_ROOT)/AXAnimationChain/Classes/**'}
s.pod_target_xcconfig = {'SWIFT_INCLUDE_PATHS' => '$(PODS_ROOT)/AXAnimationChain/Classes/**'}
s.preserve_paths = 'AXAnimationChain/Classes/module.modulemap'
s.dependency 'AXAnimationChainSwift'
s.frameworks = "UIKit", "Foundation", "QuartzCore"
s.requires_arc = true
end