RxSwiftCommunity / RxCoreData

RxSwift extensions for Core Data
MIT License
164 stars 68 forks source link

Updates to work with RxSwift 3.0.0 release #16

Closed samscam closed 7 years ago

samscam commented 7 years ago

I updated the dependencies to use the 3.0.0 releases of RxSwift/RxCocoa - along with RxDataSources 1.0.0 in the example app.

It threw up a couple of minor syntax changes: • creating AnonymousDisposables can now only be done via Disposables.createself.tableView.rx.model(at: indexPath) needs the explicit "at" (this used in the example app)

With the build setting for ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES I've removed them again, erring on the side of stopping Cocoapods from complaining even though Xcode will disagree. You kinda can't win with this at the moment :/

Updated the version number (0.3.0 without the rc bit). The podspec lints ok for me with Cocoapods 1.1.1 so should be good to go.

chrisjrex commented 7 years ago

is there anyway i can point to this branch before the pull request is accepted? would like to do some testing on my app. but can't build without this

serluca commented 7 years ago

@chrisjrex you could use the master branch

chrisjrex commented 7 years ago

thanks