-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxCacheMap.podspec
More file actions
19 lines (19 loc) · 874 Bytes
/
RxCacheMap.podspec
File metadata and controls
19 lines (19 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'RxCacheMap'
s.version = '1.1.2'
s.summary = 'A collection of caching RxSwift operators.'
s.description = 'Cache/memoize the output of RxSwift.Observables using cacheMap, cacheFlatMap, cacheFlatMapLatest and cacheFlatMapInvalidatingOn.'
s.homepage = 'https://github.com/briansemiglia/RxCacheMap'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Brian Semiglia' => 'brian.semiglia@gmail.com' }
s.source = {
:git => 'https://github.com/briansemiglia/RxCacheMap.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/brians_'
s.ios.deployment_target = '13.0'
s.macos.deployment_target = '10.10'
s.source_files = 'RxCacheMap/Classes/**/*'
s.swift_version = '5.3'
s.dependency 'RxSwift', '~> 6.0'
end