-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZCPCarousel.podspec
More file actions
30 lines (23 loc) · 1.17 KB
/
ZCPCarousel.podspec
File metadata and controls
30 lines (23 loc) · 1.17 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
Pod::Spec.new do |s|
s.name = "ZCPCarouselView"
s.version = "0.0.1"
s.summary = "It`s a framework."
s.description = <<-DESC
It`s a framework for myself.
DESC
s.homepage = "https://github.com/MagicianMalygos/ZCPCarouselView"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "朱超鹏" => "z164757979@163.com" }
s.source = { :git => "https://github.com/MagicianMalygos/ZCPCarouselView.git", :tag => "#{s.version}" }
s.platform = :ios, '9.0'
s.framework = 'Foundation', 'UIKit'
# ――― Subspec ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.subspec 'Swift' do |ss|
ss.public_header_files = 'ZCPCarouselView/ZCPCarouselView_Swift/**/*.h'
ss.source_files = 'ZCPCarouselView/ZCPCarouselView_Swift/**/*.{h,m}'
end
s.subspec 'OC' do |ss|
ss.public_header_files = 'ZCPCarouselView/ZCPCarouselView_OC/**/*.h'
ss.source_files = 'ZCPCarouselView/ZCPCarouselView_OC/**/*.{h,m}'
end
end