-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQLTool.podspec
More file actions
29 lines (26 loc) · 1.02 KB
/
QLTool.podspec
File metadata and controls
29 lines (26 loc) · 1.02 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
Pod::Spec.new do |s|
s.name = "QLTool"
s.version = "0.1.5"
s.summary = "A short description of QLQRCodeScan."
s.description = <<-DESC
个人工具类
DESC
s.homepage = "https://github.com/mark1225/QLQRCodeScan"
s.license = "MIT"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "qilong" => "915464855@qq.com" }
s.platform = :ios
s.platform = :ios,"9.0"
s.source = { :git => "https://github.com/mark1225/QLQRCodeScan.git", :tag => "#{s.version}" }
s.source_files = "QLQRCode/QLQRCode/QLTool/*.h"
# s.source_files = "QLQRCode/QLQRCode/QLTool/*.{h,m}","QLQRCode/QLQRCode/QLTool/Category/*.{h,m}","QLQRCode/QLQRCode/QLTool/Tool/*.{h,m}"
s.subspec 'Category' do |sa|
sa.source_files = 'QLQRCode/QLQRCode/QLTool/Category/**/*.{h,m}'
sa.dependency 'QLTool/Tool'
end
s.subspec 'Tool' do |sc|
sc.source_files = 'QLQRCode/QLQRCode/QLTool/Tool/**/*.{h,m}'
end
s.dependency "SDWebImage"
# s.requires_arc = true
end