forked from xiJieGuYuan/CRAnimation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCRAnimation.podspec
More file actions
63 lines (51 loc) · 2.34 KB
/
Copy pathCRAnimation.podspec
File metadata and controls
63 lines (51 loc) · 2.34 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Be sure to run `pod lib lint CRAnimation.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'CRAnimation'
s.version = '0.1.1'
s.summary = 'Some incredible animation effects in iOS.'
s.description = <<-DESC
CRAniamtion full name is Couldn't Refuse Aniamtion.
In here, we can find or create some incredible animation effects in iOS.
DESC
s.homepage = 'https://github.com/CRAnimation/CRAnimation.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'BearRan' => '[email protected]' }
s.source = { :git => 'https://github.com/CRAnimation/CRAnimation.git', :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.frameworks = 'UIKit'
s.dependency 'BearSkill'
s.prefix_header_file = 'Pod/CRPCH/CRPrefixHeader.pch'
s.subspec 'Widget' do |widget|
widget.subspec 'CRImageGradientView' do |imageGradientView|
imageGradientView.source_files = 'Pod/CRWidget/CRImageGradientView/*'
end
widget.subspec 'CRCardAnimationView' do |cardAnimationView|
cardAnimationView.source_files = 'Pod/CRWidget/CRCardAnimationView/*'
end
widget.subspec 'CCWormHUD' do |wormHUD|
wormHUD.source_files = 'Pod/CRWidget/CCWormHUD/*'
end
widget.subspec 'HZLaunchView' do |hzLaunchView|
hzLaunchView.source_files = 'Pod/CRWidget/HZLaunchView/*'
end
widget.subspec 'CRGatling' do |crGatling|
crGatling.source_files = 'Pod/CRWidget/CRGatling/*'
end
widget.subspec 'RollerCoasterLayer' do |rollerCoasterLayer|
rollerCoasterLayer.source_files = 'Pod/CRWidget/RollerCoasterLayer/*.swift'
rollerCoasterLayer.resources = 'Pod/CRWidget/RollerCoasterLayer/RollerCoasterLayer.bundle'
end
widget.subspec 'HJWCircleView' do |hjwCircleView|
hjwCircleView.source_files = 'Pod/CRWidget/HJWCircleView/*'
end
widget.subspec 'HJWWaterWave' do |hjwWaterWave|
hjwWaterWave.source_files = 'Pod/CRWidget/HJWWaterWave/*'
end
end
end