forked from melvitax/DateHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AFDateHelper.podspec
31 lines (25 loc) · 1.76 KB
/
AFDateHelper.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
28
29
30
31
Pod::Spec.new do |s|
s.name = "AFDateHelper"
s.version = "4.3.0"
s.summary = "Date Extension for Swift 5"
s.description = <<-DESC
A Swift Date extension for creating, modifying and comparing dates.
DESC
s.homepage = "https://github.com/melvitax/DateHelper"
s.screenshots = "https://raw.githubusercontent.com/melvitax/DateHelper/master/logo.png"
s.license = 'MIT'
s.author = { "Melvin Rivera" => "melvitax@me.com" }
s.social_media_url = 'https://twitter.com/melvitax'
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/melvitax/DateHelper.git", :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Sources/**/*.swift"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end