forked from edwardvalentini/EVContactsPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EVContactsPicker.podspec
41 lines (33 loc) · 1.71 KB
/
EVContactsPicker.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Be sure to run `pod lib lint EVContactsPicker.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "EVContactsPicker"
s.version = "0.5.9"
s.summary = "A Contact Picker using Contacts Framework that allows any input source not just the Apple Contacts."
s.description = <<-DESC
1. uses Apples new ios9 Contacts and ContactsUI Frameworks
2. allows any contact source to be used as long as it conforms to the
EVCContactsPickerDataSourceProtocol Protocol.
DESC
s.homepage = "https://github.com/edwardvalentini/EVContactsPicker"
s.screenshots = ["https://raw.githubusercontent.com/edwardvalentini/EVContactsPicker/master/Screenshots/screenshot0.png", "https://raw.githubusercontent.com/edwardvalentini/EVContactsPicker/master/Screenshots/screenshot1.png"]
s.license = 'MIT'
s.author = { "Edward Valentini" => "edward@interlook.com" }
s.source = { :git => "https://github.com/edwardvalentini/EVContactsPicker.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/edwardvalentini'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '3.0'
}
s.resource_bundles = {
'EVContactsPicker' => ['Pod/Assets/*'] #,'Pod/Assets/*.{png,gif,jpg}']
}
s.dependency 'Nuke', '~> 4.1.2'
end