forked from RxSwiftCommunity/RxReachability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxReachability.podspec
40 lines (33 loc) · 1.59 KB
/
RxReachability.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
#
# Be sure to run `pod lib lint RxReachability.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 = 'RxReachability'
s.version = '1.0.0'
s.summary = 'RxSwift bindings for Reachability'
s.description = <<-DESC
RxReachability adds easy to use RxSwift bindings for [ReachabilitySwift](https://github.com/ashleymills/Reachability.swift).
You can react to network reachability changes and even retry observables when network comes back up.
DESC
s.homepage = 'https://github.com/RxSwiftCommunity/RxReachability'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Ivan Bruel' => '[email protected]',
'Bruno Oliveira' => '[email protected]',
'RxSwiftCommunity' => 'https://github.com/RxSwiftCommunity'
}
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxReachability.git', :tag => s.version.to_s }
s.social_media_url = 'https://rxswift.slack.com'
s.source_files = 'RxReachability/Sources/**/*'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.frameworks = 'Foundation'
s.swift_version = '5.0'
s.dependency 'ReachabilitySwift', '~> 4.3.1'
s.dependency 'RxSwift', '~> 5'
s.dependency 'RxCocoa', '~> 5'
end