Skip to content

Instantly share code, notes, and snippets.

@Igor-Palaguta
Last active June 12, 2017 15:48
Show Gist options
  • Save Igor-Palaguta/fa4a5c3018ac317a5b0568b2cbb9bcbd to your computer and use it in GitHub Desktop.
Save Igor-Palaguta/fa4a5c3018ac317a5b0568b2cbb9bcbd to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "ReactiveObjCBridge"
s.version = "1.0.2"
s.summary = "Bridge between ReactiveObjC and ReactiveSwift"
s.description = <<-DESC
After announced Swift, ReactiveCocoa was rewritten in Swift. This framework creates a bridge between those Swift and Objective-C APIs (ReactiveSwift and ReactiveObjC).
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}"
s.dependency 'ReactiveObjC', '~> 3.0.0'
s.dependency 'ReactiveSwift', '2.0.0-alpha.2'
s.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS[config=Release]" => "-suppress-warnings" }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment