forked from ludvigeriksson/LETimeIntervalPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLETimeIntervalPicker.podspec
More file actions
24 lines (21 loc) · 948 Bytes
/
LETimeIntervalPicker.podspec
File metadata and controls
24 lines (21 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "LETimeIntervalPicker"
s.version = "1.0.1"
s.summary = "A UIDatePicker for time intervals."
s.description = <<-DESC
LETimeIntervalPicker lets you pick a time interval with hours, minutes and seconds.
DESC
s.homepage = "https://github.com/ludvigeriksson/LETimeIntervalPicker"
s.screenshots = "http://i.imgur.com/qi9fHVN.png"
s.license = 'MIT'
s.author = { "Ludvig Eriksson" => "ludvigeriksson@icloud.com" }
s.source = { :git => "https://github.com/ludvigeriksson/LETimeIntervalPicker.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ludvigerikss0n'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'LETimeIntervalPicker' => ['Pod/Assets/**/*']
}
s.frameworks = 'UIKit'
end