-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathDatez.podspec
24 lines (20 loc) · 930 Bytes
/
Datez.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
Pod::Spec.new do |s|
s.name = "Datez"
s.version = "3.1.1"
s.summary = "Breeze through NSDate, NSDateComponents, and NSTimeInterval!"
s.description = <<-DESC
A swift datez library that focuses on readability, compactness,
and maintainability. Get started with the docs or associated
playgrounds to quickly make the most out of this library.
DESC
s.homepage = "https://swiftkitz.github.io"
s.license = "MIT"
s.author = { "Maz Jaleel" => "mazjaleel@gmail.com" }
s.social_media_url = "http://twitter.com/SwiftKitz"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/SwiftKitz/Datez.git", :tag => "v3.1.1" }
s.source_files = "Datez/Datez/**/*.swift"
end