-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIOSKit.podspec
More file actions
28 lines (22 loc) · 981 Bytes
/
IOSKit.podspec
File metadata and controls
28 lines (22 loc) · 981 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
28
Pod::Spec.new do |spec|
spec.name = "IOSKit"
spec.version = "1.2.1"
spec.summary = "ios开发工具包"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
spec.description = <<-DESC
对一些常用的操作进行封装
DESC
spec.homepage = "https://github.com/da0ke/IOSKit"
spec.license = "MIT"
spec.author = { "da0ke" => "592052922@qq.com" }
spec.platform = :ios, "9.0"
spec.swift_version = "5"
spec.source = { :git => "https://github.com/da0ke/IOSKit.git", :tag => "#{spec.version}" }
spec.source_files = "IOSKit/Source/**/*.swift"
spec.ios.resource_bundle = { 'IOSKit' => 'IOSKit/Source/IOSKit.xcassets' }
spec.dependency "Alamofire", "4.8.2"
end