forked from RxSwiftCommunity/RxContacts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxContacts.podspec
More file actions
25 lines (19 loc) · 800 Bytes
/
Copy pathRxContacts.podspec
File metadata and controls
25 lines (19 loc) · 800 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
Pod::Spec.new do |s|
s.name = "RxContacts"
s.version = "1.0.2"
s.summary = "RxSwift extensions for Contacts framework."
s.homepage = "https://github.com/RxSwiftCommunity/RxContacts"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Satish Babariya" => "satish.babariya@gmail.com" }
s.cocoapods_version = '>= 1.4.0'
s.swift_version = '4.0'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.12"
s.watchos.deployment_target = "3.0"
s.source = { :git => "https://github.com/RxSwiftCommunity/RxContacts.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.framework = "Foundation" ,"Contacts"
s.static_framework = true
s.dependency 'RxSwift', '~> 4'
s.dependency 'RxCocoa', '~> 4'
end