RxSwift/RxBlocking
David Potter a701d79a0f Fix warnings due to use in app extensions and to Xcode updates.
Xcode gives two warnings when including the Rx project and building in an app.

1. The first is due to use in a component that will be used in an extension.  Xcode displays the message “linking against dylib not safe for use in application extensions”.  To configure an app extension target to use an embedded framework, set the target’s “Require Only App-Extension-Safe API” build setting to Yes.

https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/ExtensibilityPG/ExtensionScenarios.html

2. The second is due to changes in Xcode that want to update the project file to comply with the latest guidelines.  Clicking the warning brings up a prompt to modify the project.
2015-10-29 15:16:56 -07:00
..
BlockingObservable+Operators.swift Adds `BlockingObservable`. 2015-10-19 20:28:49 +02:00
BlockingObservable.swift Adds `BlockingObservable`. 2015-10-19 20:28:49 +02:00
Info.plist Fix warnings due to use in app extensions and to Xcode updates. 2015-10-29 15:16:56 -07:00
ObservableConvertibleType+Blocking.swift Adds unused warnings. 2015-10-19 21:59:31 +02:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00

README.md

RxBlocking

Set of blocking operators for easy unit testing.

Don't use these operators in production apps. These operators are only meant for testing purposes.

extension ObservableType {
    public func toArray() throws -> [E] {}
}

extension ObservableType {
    public func first() throws -> E? {}
}

extension ObservableType {
    public func last() throws -> E? {}
}