CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.
TestsTested | ✗ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | Feb 2015 |
SPMSupports SPM | ✗ |
Maintained by Rogerio Araujo.
Depends on: | |
Alamofire | ~> 1.1.0 |
ReactiveCocoa | ~> 2.0 |
Alamofire extension with support to ReactiveCocoa signals
Currently you can only subscribe to request signal
import Alamofire
import RACAlamofire
var signal:RACSignal = Alamofire.request(.GET, "http://www.google.com")
.validate(statusCode: 200..<300)
.rac_response()
signal.subscribeNext { (value) -> Void in
println(value)
}