Skip to content

Commit

Permalink
Updates spm status in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Dec 30, 2015
1 parent 6d4f04e commit 83bac6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file.
* works on `Linux` (`RxSwift`, `RxBlocking`, `RxTests`)
* doesn't work on OSX because it can't compile `RxCocoa` and `RxTests` (because of inclusion of `XCTest` extensions), but OSX has two other package managers and manual method.
* Project content is linked to `Sources` automagically using custom tool
* more info in [Documentation/Linux.md](https://github.com/ReactiveX/RxSwift/blob/master/Documentation/Linux.md)
* Adds `VirtualTimeScheduler` to `RxSwift`
* Adds `HistoricalScheduler` to `RxSwift`
* Improves performance of virtual schedulers using priority queue.
Expand Down
4 changes: 3 additions & 1 deletion Documentation/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ We've made a proof of concept for Linux.

To test it, create `Package.swift` in your test directory with the following content:

**This will start to work once we release 2.0.0 because it looks like spm has some issues dealing with prerelease versions. Running `swift build` inside RxSwift repository will work on Linux.**

```
import PackageDescription
let package = Package(
name: "MyShinyUnicornCat",
dependencies: [
.Package(url: "https://github.com/ReactiveX/RxSwift.git", Version(2, 0, 0, prereleaseIdentifiers: ["rc", "0"]))
.Package(url: "https://github.com/ReactiveX/RxSwift.git", Version(2, 0, 0))
]
)
```
Expand Down

0 comments on commit 83bac6d

Please sign in to comment.