forked from ManueGE/November
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMGEDateFormatter.podspec
More file actions
29 lines (19 loc) · 1.1 KB
/
MGEDateFormatter.podspec
File metadata and controls
29 lines (19 loc) · 1.1 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
Pod::Spec.new do |spec|
spec.name = "MGEDateFormatter"
spec.version = "2.0.1"
spec.summary = "A handy API to convert `Date` to `String` and back written in swift"
spec.description = <<-DESC
MGEDateFormatter provides a set of extensions to `Date` and `DateFormatter` to build a nice API which simplify the conversion from `Date` to `Strin and back.
Creating a `NSDateFormatter` is an expensive task. For this reason, **MGEDateFormatter** takes care of caching the created `DateFormatter` in order to reuse them along the lifecycle of your app.
DESC
spec.homepage = "https://github.com/ManueGE/November/"
spec.license = "MIT"
spec.author = "Manuel García-Estañ"
spec.social_media_url = "http://twitter.com/ManueGE"
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/ManueGE/November.git", :tag => "#{spec.version}" }
spec.requires_arc = true
spec.framework = "Foundation"
spec.source_files = "MGEDateFormatter/MGEDateFormatter/*.{swift}"
spec.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end