-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChainKit.podspec
More file actions
48 lines (38 loc) · 1.65 KB
/
ChainKit.podspec
File metadata and controls
48 lines (38 loc) · 1.65 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
#
# Be sure to run `pod spec lint ChainKit.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "ChainKit"
spec.version = "0.0.2"
spec.summary = "链式编程框架"
spec.description = <<-DESC
这是一个使用Swift开发的链式编程框架
DESC
spec.homepage = "https://github.com/wooseng/ChainKit"
spec.license = "LICENSE"
spec.author = { "wooseng" => "zhanbaocheng@vip.qq.com" }
spec.platform = :ios, "10.0"
# spec.ios.deployment_target = "10.0"
# spec.osx.deployment_target = "10.7"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
spec.source = { :git => 'https://github.com/wooseng/ChainKit.git', :tag => spec.version }
spec.source_files = "Sources/*.swift"
# spec.public_header_files = "Classes/**/*.h"
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
spec.swift_version = '5.0'
spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# 以下为需要依赖的系统框架和库
# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
# 以下为需要依赖的第三方的pod库, 如果有多个依赖,则换行接着写, 依赖的写法与Podfile中的写法一致
spec.dependency "SnapKit"
end