forked from ningsuhen/SwiftAddressBook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftAddressBook.podspec
22 lines (19 loc) · 1.25 KB
/
SwiftAddressBook.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SwiftAddressBook"
s.version = "0.4.4"
s.summary = "Strong Typed ABAddressBook wrapper written in Swift"
s.description = <<-DESC
It is tedious and requires very much reading in the documentation if you want to understand the ABAddressBook in iOS. To provide a solution, this wrapper uses Swift, which is strong-typed (unlike c). It also circumvents the use of unsafe c-pointers when accessing ABAddressBook from Swift, by directly casting them to the correct type. All properties, previously only available via the correct key, can now be accessed conveniently via variables.
DESC
s.homepage = "https://github.com/SocialbitGmbH/SwiftAddressBook"
s.license = 'Apache 2.0'
s.author = { "Tassilo Karge" => "[email protected]" }
s.source = { :git => "https://github.com/SocialbitGmbH/SwiftAddressBook.git", :tag => "0.4.4" }
s.social_media_url = 'https://twitter.com/socialbit_de'
s.platform = :ios, '8.0'
s.requires_arc = true
s.module_name = 'SwiftAddressBook'
s.source_files = 'Pod/Classes/**/*'
# s.resources = ['Pod/Assets/*.png']
s.frameworks = ['AddressBook', 'AddressBookUI']
end