-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCNBasicTools-OC.podspec
More file actions
23 lines (20 loc) · 929 Bytes
/
CNBasicTools-OC.podspec
File metadata and controls
23 lines (20 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'CNBasicTools-OC'
s.version = '1.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/congni/CNBasicTools-OC.git'
s.authors = { "葱泥" => "983818495@qq.com" }
s.summary = 'OC开发基本工具库'
s.description = <<-DESC
A longer description of U in Markdown format.
* OC开发基本工具库
* pod使用方法: pod "CNBasicTools-OC"
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/congni/CNBasicTools-OC.git", :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'CNBasicTools-OC/*'
s.dependency 'CNKit'
end