forked from gligorkot/TimeZonePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TimeZonePicker.podspec
27 lines (23 loc) · 1.31 KB
/
TimeZonePicker.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
Pod::Spec.new do |s|
s.name = 'TimeZonePicker'
s.version = '1.3.0'
s.summary = 'A TimeZonePicker UIViewController similar to the iOS Settings app.'
s.description = <<-DESC
* A ready view controller that can be used in any iOS app.
* Search/filter functionality ready using a search bar.
* Selection invokes a delegate with the selected TimeZone.
DESC
s.homepage = 'https://github.com/gligorkot/TimeZonePicker'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'Gligor Kotushevski' => 'gligorkot@gmail.com' }
s.social_media_url = 'https://twitter.com/gligor_nz'
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/gligorkot/TimeZonePicker.git', :tag => s.version.to_s }
s.source_files = 'Classes', 'Classes/*.{swift}'
s.resources = 'Resources/*.{json,storyboard}'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.2' }
s.frameworks = 'UIKit'
s.requires_arc = true
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2']
end