forked from malcommac/SwiftDate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftDate.podspec
More file actions
17 lines (17 loc) · 750 Bytes
/
Copy pathSwiftDate.podspec
File metadata and controls
17 lines (17 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = 'SwiftDate'
spec.version = '2.0.2'
spec.summary = 'Swift library to easily manage Dates and TimeZones'
spec.homepage = 'https://github.com/malcommac/SwiftDate'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'Daniele Margutti' => 'me@danielemargutti.com' }
spec.social_media_url = 'http://twitter.com/danielemargutti'
spec.source = { :git => 'https://github.com/malcommac/SwiftDate.git', :tag => "#{spec.version}" }
spec.source_files = 'SwiftDate/*.swift'
spec.ios.deployment_target = '8.0'
spec.watchos.deployment_target = '2.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.requires_arc = true
spec.module_name = 'SwiftDate'
end