forked from pointfreeco/swift-tagged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TaggedTime.podspec
39 lines (31 loc) · 1.18 KB
/
TaggedTime.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
38
39
Pod::Spec.new do |s|
s.name = "TaggedTime"
s.summary = "A library for safer seconds and milliseconds types."
s.version = "0.4.0"
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, and
TaggedTime provides two completely different types for differentiating
between seconds and millseconds.
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.dependency "Tagged", "~> 0.4.0"
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/TaggedTime/**/*.swift"
end