-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDrX.podspec
More file actions
28 lines (24 loc) · 1.22 KB
/
DrX.podspec
File metadata and controls
28 lines (24 loc) · 1.22 KB
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
Pod::Spec.new do |s|
s.name = 'DrX'
s.version = '3.3.1'
s.summary = "The Rx doctor is in the house, curing all your ailments with simple-yet-expressive operators and extensions. Includes Cocoa Touch support!"
s.description = "DrX is a collection of convenience extensions of RxSwift which add new operators for concisely handling common patterns and/or scenarios. In addition to an agnostic core, DrX also supports iOS RxCocoa."
s.license = { type: 'MIT', file: 'LICENSE' }
s.social_media_url = 'https://twitter.com/DuetHealth'
s.source = { git: 'https://github.com/DuetHealth/DrX.git', tag: "#{s.version}" }
s.homepage = "#{s.source[:git]}"
s.default_subspec = 'Core'
s.requires_arc = true
s.ios.deployment_target = '12.0'
s.swift_version = '5.5'
s.subspec 'Core' do |core|
core.source_files = "DrX/Sources/Core/**/*.{h,m,swift}"
end
s.subspec 'Cocoa-Touch' do |touch|
touch.source_files = "DrX/Sources/**/*.{h,m,swift}"
touch.dependency 'RxCocoa'
end
s.dependency 'RxRelay'
s.dependency 'RxSwift'
end