forked from MatthewYork/DateTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDateTools.podspec
More file actions
21 lines (16 loc) · 720 Bytes
/
DateTools.podspec
File metadata and controls
21 lines (16 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'DateTools'
s.version = '1.5.0'
s.summary = 'Dates and time made easy in Objective-C'
s.homepage = 'https://github.com/MatthewYork/DateTools'
s.description = 'DateTools was written to streamline date and time handling in Objective-C.'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Matthew York" => "my3681@gmail.com" }
s.source = { :git => "https://github.com/MatthewYork/DateTools.git",
:tag => "v#{s.version.to_s}" }
s.ios.platform = :ios, '7.0'
s.osx.platform = :iox, '10.7'
s.requires_arc = true
s.source_files = 'DateTools'
s.resources = 'DateTools/DateTools.bundle'
end