-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDPPickerManager.podspec
More file actions
21 lines (17 loc) · 756 Bytes
/
DPPickerManager.podspec
File metadata and controls
21 lines (17 loc) · 756 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 = "DPPickerManager"
s.version = "1.0.4"
s.summary = "UIPicker inside a UIAlertController."
s.homepage = "https://github.com/priore/DPPickerManager"
s.license = 'MIT'
s.authors = { 'Danilo Priore' => 'support@prioregroup.com' }
s.source = { :git => "https://github.com/priore/DPPickerManager.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danilopriore'
s.platform = :ios, "10.0"
s.ios.deployment_target = '10.0'
s.requires_arc = true
s.framework = 'UIKit'
s.source_files = 'DPPickerManager/Class/*.swift'
s.resources = 'DPPickerManager/Resources/**/*'
s.swift_versions = ['3.0', '4.2', '5.0']
end