-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Partial.podspec
19 lines (19 loc) · 914 Bytes
/
Partial.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "Partial"
spec.version = "1.1.0"
spec.summary = "Type-safe wrapper to make a type's properties optional"
spec.description = "Type-safe wrapper to make a type's properties optional, with extra convenience for creating instances, unwrapping individual properties, and building an instance with multiple pieces of code contributing values"
spec.homepage = "https://github.com/JosephDuffy/Partial"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "Joseph Duffy"
spec.source = {
:git => "https://github.com/JosephDuffy/Partial.git",
:tag => "v#{spec.version}"
}
spec.source_files = "Sources/Partial/*.swift"
spec.osx.deployment_target = "10.10"
spec.ios.deployment_target = "8.0"
spec.tvos.deployment_target = "9.0"
spec.watchos.deployment_target = "2.0"
spec.swift_version = "5.0"
end