forked from ReactiveX/RxSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxAtomic.podspec
More file actions
23 lines (19 loc) · 790 Bytes
/
RxAtomic.podspec
File metadata and controls
23 lines (19 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "RxAtomic"
s.version = "4.4.0"
s.summary = "Atomic primitives for RxSwift"
s.description = <<-DESC
Atomic primitives for RxSwift.
DESC
s.homepage = "https://github.com/ReactiveX/RxSwift"
s.license = 'MIT'
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
s.source = { :git => "https://github.com/ReactiveX/RxSwift.git", :tag => s.version.to_s }
s.requires_arc = true
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'RxAtomic/**/*.{c,h}'
end