-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRelativeFormatter.podspec
More file actions
39 lines (29 loc) · 1.4 KB
/
RelativeFormatter.podspec
File metadata and controls
39 lines (29 loc) · 1.4 KB
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
#
# Be sure to run `pod spec lint NSDate+RelativeFormatter.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "RelativeFormatter"
s.version = "0.8.3"
s.summary = "Date swift extension to format dates relative to current date."
s.description = <<-DESC
RelativeFormatter adds the relativeFormatted function to Date allowing you to get.
* Time ago formatted dates "2 days ago"
* Time in the future formatted dates "In 2 days"
DESC
s.homepage = "https://github.com/bitomule/RelativeFormatter"
s.license = "MIT"
s.author = { "David Collado Sela" => "bitomule@gmail.com", "David Santana" => "David@2coders.com" }
s.social_media_url = "http://twitter.com/bitomule"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/bitomule/RelativeFormatter.git", :tag => "0.8.3" }
s.source_files = 'Source/*.swift'
s.resources = 'Source/RelativeFormatter.bundle'
s.requires_arc = true
end