-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathV2exAPI.podspec
More file actions
27 lines (18 loc) · 829 Bytes
/
V2exAPI.podspec
File metadata and controls
27 lines (18 loc) · 829 Bytes
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
Pod::Spec.new do |spec|
spec.name = "V2exAPI"
spec.version = "1.0.0"
spec.summary = "V2ex API 的 Swift 封装,支持 iOS/macOS"
spec.description = <<-DESC
V2ex API 的 Swift 封装,支持 iOS/macOS,支持 V1/V2 API。
DESC
spec.homepage = "https://github.com/isaced/V2exAPI"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "isaced" => "isaced@163.com" }
spec.ios.deployment_target = "15.0"
spec.osx.deployment_target = "12.0"
spec.watchos.deployment_target = "8.0"
spec.tvos.deployment_target = "15.0"
spec.source = { :git => "https://github.com/isaced/V2exAPI.git", :tag => "#{spec.version}" }
spec.source_files = ["Sources/**/*.swift"]
spec.swift_versions = ['5.0']
end