-
Notifications
You must be signed in to change notification settings - Fork 39
/
ReactiveObjCBridge.podspec
31 lines (25 loc) · 1.5 KB
/
ReactiveObjCBridge.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
Pod::Spec.new do |s|
s.name = "ReactiveObjCBridge"
s.version = "6.0.0"
s.summary = "Bridge between ReactiveObjC and ReactiveSwift"
s.description = <<-DESC
After the announcement of Swift, ReactiveCocoa was rewritten in Swift. This framework creates a bridge between those Swift and Objective-C APIs (now known as ReactiveSwift and ReactiveObjC respectively).
Because the APIs are based on fundamentally different designs, the conversion is not always one-to-one; however, every attempt has been made to faithfully translate the concepts between the two APIs (and languages).
DESC
s.homepage = "https://github.com/ReactiveCocoa/ReactiveObjCBridge"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = "ReactiveCocoa"
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveObjCBridge.git", :tag => "#{s.version}" }
s.source_files = "ReactiveObjCBridge/*.{swift,h,m}"
s.private_header_files = 'ReactiveObjCBridge/RACScheduler+SwiftSupport.h'
s.module_map = 'ReactiveObjCBridge/module.modulemap'
s.dependency 'ReactiveObjC', '~> 3.1'
s.dependency 'ReactiveSwift', '~> 6.1'
s.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS[config=Release]" => "$(inherited) -suppress-warnings" }
s.cocoapods_version = ">= 1.6.0"
s.swift_versions = ["5.0", "5.1"]
end