-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathJJLISO8601DateFormatter.podspec
31 lines (25 loc) · 1.3 KB
/
JJLISO8601DateFormatter.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
#
# Be sure to run `pod lib lint JJLISO8601DateFormatter.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'JJLISO8601DateFormatter'
s.version = '0.1.8'
s.summary = 'A 10x+ faster drop-in replacement for NSISO8601DateFormatter'
s.description = <<-DESC
'JJLISO8601DateFormatter is a 10x+ faster drop-in replacement for NSISO8601DateFormatter. It provides efficient, ISO 8601 compliant, date formatting.'
DESC
s.homepage = 'https://github.com/michaeleisel/JJLISO8601DateFormatter'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Michael Eisel' => '[email protected]' }
s.source = { :git => 'https://github.com/michaeleisel/JJLISO8601DateFormatter.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.source_files = 'Sources/JJLISO8601DateFormatter/**/*'
s.public_header_files = 'Sources/JJLISO8601DateFormatter/include/JJLISO8601DateFormatter.h'
# s.requires_arc = false # todo: put back in later
end