forked from MaciejGad/Duration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathISO8601Duration.podspec
More file actions
19 lines (17 loc) · 847 Bytes
/
ISO8601Duration.podspec
File metadata and controls
19 lines (17 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "ISO8601Duration"
s.version = "1.3.1"
s.summary = "ISO 8601 duration implementation for Swift using Codable"
s.description = <<-DESC
This micro-framework should help with handling duration written using the ISO 8601 standard. It allows parsing a string like "P3Y6M4DT12H30M5S" to TimeInterval.
DESC
s.homepage = "https://github.com/MaciejGad/Duration"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Maciej Gad" => "https://github.com/MaciejGad" }
s.social_media_url = "https://twitter.com/maciej_gad"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/MaciejGad/Duration.git", :tag => 'v1.3.1' }
s.source_files = "Duration/*.swift"
s.swift_version = "5.0"
end