forked from ExCodable/ExCodable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExCodable.podspec
More file actions
46 lines (37 loc) · 3.05 KB
/
ExCodable.podspec
File metadata and controls
46 lines (37 loc) · 3.05 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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "ExCodable"
# export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
s.version = ENV["LIB_VERSION"] || "0.5.0"
s.summary = "Key-Mapping Extensions for Swift Codable"
# s.description = "Key-Mapping Extensions for Swift Codable."
s.homepage = "https://github.com/iwill/ExCodable"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
s.author = { "Mr. Ming" => "i+ExCodable@iwill.im" }
s.social_media_url = "https://iwill.im/about/"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.swift_version = "5.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/iwill/ExCodable.git", :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Sources", "Sources/**/*.{swift}"
# s.exclude_files = "Sources/Exclude"
# s.public_header_files = "Sources/**/*.h"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "Foundation"
# s.frameworks = "Foundation", "UIKit", "WebKit", "CoreGraphics"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "pod", "~> 1.0.0"
end