-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLSerializable.podspec
More file actions
33 lines (19 loc) · 896 Bytes
/
TLSerializable.podspec
File metadata and controls
33 lines (19 loc) · 896 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
29
30
31
32
33
#
# Be sure to run `pod spec lint TLSerializable.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 http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "TLSerializable"
s.version = "0.6"
s.summary = "基于 Codable 的 json 序列化和反序列化工具"
s.homepage = "https://github.com/ysCharles/TLSerializable"
s.license = "MIT"
s.author = { "Charles" => "ystanglei@gmail.com" }
s.source = { :git => "https://github.com/ysCharles/TLSerializable.git", :tag => "#{s.version.to_s}" }
s.platform = :ios, "11.0"
s.source_files = "Sources/TLSerializable/*.swift"
s.swift_version = '5'
end