forked from dreymonde/Time
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeIntervals.podspec
More file actions
20 lines (20 loc) · 813 Bytes
/
TimeIntervals.podspec
File metadata and controls
20 lines (20 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "TimeIntervals"
s.version = "1.0.1"
s.summary = "Type-safe time calculations for Swift."
s.description = <<-DESC
Type-safe time calculations for Swift, powered by generics.
DESC
s.homepage = "https://github.com/dreymonde/Time"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Oleg Dreyman" => "dreymonde@me.com" }
s.social_media_url = "https://twitter.com/olegdreyman"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/dreymonde/Time.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
s.swift_version = "4.2"
end