forked from akosma/SwiftMoment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftMoment.podspec
27 lines (24 loc) · 1.38 KB
/
SwiftMoment.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
25
26
27
Pod::Spec.new do |s|
s.name = "SwiftMoment"
s.version = "0.7"
s.summary = "A time and calendar manipulation library for iOS / macOS / tvOS / watchOS written in Swift"
s.description = <<-DESC
This framework is inspired by Moment.js. Its objectives are the following:
* Simplify the manipulation and readability of date and interval values.
* Provide help when parsing dates from various string representations.
* Simplifying the formatting of date information into strings.
* Streamlining getting date components (day, month, etc.) from dates and time intervals.
This framework supports iOS 9+, macOS 10.11+, tvOS 9+, watchOS 3+, Xcode 8 and Swift 3.
DESC
s.homepage = "http://akosma.github.io/SwiftMoment/"
s.license = { :type => "BSD", :file => "LICENSE" }
s.author = { "Adrian Kosmaczewski" => "akosma@me.com" }
s.social_media_url = "http://twitter.com/akosma"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "3.0"
s.source = { :git => "https://github.com/akosma/SwiftMoment.git", :tag => "v0.7" }
s.source_files = "SwiftMoment/SwiftMoment"
s.resource = "SwiftMoment/SwiftMoment/MomentFromNow.bundle"
end