-
Notifications
You must be signed in to change notification settings - Fork 1
/
RxErrorTracker.podspec
18 lines (17 loc) · 1.02 KB
/
RxErrorTracker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'RxErrorTracker'
s.version = '3.0.0'
s.summary = 'An RxSwifty approach to error handling.'
s.description = <<-DESC
RxErrorTracker provides a clean, integrated and easy to use approach to error handling. It is based on RxSwift and represents an observable sequence of errors Rx style. The main benefit is to enable a single point of entry for dealing with the multiple errors that applications need to handle.
DESC
s.homepage = 'https://github.com/brunomorgado/RxErrorTracker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Bruno Morgado' => '[email protected]' }
s.source = { :git => 'https://github.com/brunomorgado/RxErrorTracker.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/bfcmorgado'
s.ios.deployment_target = '9.0'
s.source_files = 'RxErrorTracker/Classes/**/*'
s.dependency 'RxSwift', '~> 4.0.0'
s.dependency 'RxCocoa', '~> 4.0.0'
end