-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRFISO8601DateTime.podspec
30 lines (24 loc) · 1.12 KB
/
RFISO8601DateTime.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
#
# Be sure to run `pod lib lint RFISO8601DateTime.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "RFISO8601DateTime"
s.version = "3.0.3"
s.summary = "A library to easily use ISO8601 date and time."
s.description = <<-DESC
A small library that can automatically parse ISO8601/RFC3339/RFC2822 date
and time. It extends NSDate and recognise different date and time formats using regular expression.
DESC
s.homepage = "https://github.com/readefries/RFISO8601DateTime"
s.license = 'MIT'
s.author = { "Hindrik Bruinsma" => "[email protected]" }
s.source = { :git => "https://github.com/readefries/RFISO8601DateTime.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/readefries'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'RFISO8601DateTime/**/*.swift'
end