forked from pointfreeco/swift-tagged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tagged.podspec
37 lines (28 loc) · 1 KB
/
Tagged.podspec
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
Pod::Spec.new do |s|
s.name = "Tagged"
s.version = "0.4.0"
s.summary = "A library for safer types."
s.description = <<-DESC
We often work with types that are far too general or hold far too many values
than what is necessary for our domain. Sometimes we just want to
differentiate between two seemingly equivalent values at the type level.
Tagged lets us wrap basic types in more specific contexts with ease.
DESC
s.homepage = "https://github.com/pointfreeco/swift-tagged"
s.license = "MIT"
s.authors = {
"Stephen Celis" => "[email protected]",
"Brandon Williams" => "[email protected]"
}
s.social_media_url = "https://twitter.com/pointfreeco"
s.source = {
:git => "https://github.com/pointfreeco/swift-tagged.git",
:tag => s.version
}
s.swift_version = "5.0"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source_files = "Sources", "Sources/Tagged/**/*.swift"
end