-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathPrincekinKlineFrame.podspec
More file actions
33 lines (31 loc) · 1.32 KB
/
PrincekinKlineFrame.podspec
File metadata and controls
33 lines (31 loc) · 1.32 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
Pod::Spec.new do |s|
s.name = "PrincekinKlineFrame"
s.version = "0.0.49"
s.summary = "一款敏捷的K线图框架,供金融和虚拟货币行业使用"
s.homepage = 'https://github.com/iOSPrincekin/PrincekinKlineFrame.git'
s.license = 'MIT'
s.author = { "Albert" => "15267030696lee@gmail.com" }
s.ios.deployment_target = '9.0'
# s.osx.deployment_target = '10.9'
# s.watchos.deployment_target = '2.0'
# s.tvos.deployment_target = '9.0'
s.swift_version = "4.1"
s.frameworks = "UIKit" #支持的框架
s.dependency 'SnapKit'
s.dependency 'Alamofire', '~> 4.7.3'
s.dependency 'OHHTTPStubs/Swift', '~> 6.1.0'
s.dependency 'CryptoSwift', '~> 0.11.0'
s.dependency 'SocketRocket', '~> 0.5.1'
s.dependency 'RealmSwift', '~> 3.9.0'
s.dependency 'MJExtension', '~> 3.0.15.1'
s.source_files = 'PrincekinKlineFrame.h', 'Common.swift'
s.source = { :git => "https://github.com/iOSPrincekin/PrincekinKlineFrame.git", :tag => "0.0.49" }
s.subspec 'PrincekinKline' do |princekinKline|
princekinKline.source_files = 'PrincekinKline/**/*', 'Common.swift'
princekinKline.exclude_files = 'PrincekinKline/*.plist'
end
s.subspec 'PrincekinDepthChart' do |princekinDepthChart|
princekinDepthChart.source_files = 'PrincekinDepthChart/**/*', 'Common.swift'
princekinDepthChart.exclude_files = 'PrincekinDepthChart/*.plist'
end
end