forked from Alterplay/APAddressBook
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPAddressBook.podspec
More file actions
Latest commit
27 lines (23 loc) · 939 Bytes
/
Copy pathAPAddressBook.podspec
File metadata and controls
27 lines (23 loc) · 939 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
25
26
27
Pod::Spec.newdo |s|
s.name="APAddressBook"
s.version="0.2.3"
s.summary="Easy access to iOS address book"
s.homepage="https://github.com/Alterplay/APAddressBook"
s.license={:type=>'MIT',:file=>'LICENSE.txt'}
s.author={"Alexey Belkevich"=>"belkevich.alexey@gmail.com"}
s.source={:git=>"https://github.com/Alterplay/APAddressBook.git",
:tag=>s.version.to_s}
s.requires_arc=true
s.frameworks='AddressBook'
s.social_media_url="https://twitter.com/alterplay"
s.screenshot="https://dl.dropboxusercontent.com/u/2334198/APAddressBook-git-teaser.png"
s.ios.deployment_target="6.0"
s.subspec'Core'do |sp|
sp.source_files='Pod/Core/**/*.{h,m}'
end
s.subspec'Swift'do |sp|
sp.source_files='Pod/Swift/*.h'
sp.dependency'APAddressBook/Core'
end
s.default_subspecs='Core'
end