Skip to content

Commit

Permalink
Updates README.md with Swift Package Manager installation instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Oct 17, 2016
1 parent f51c475 commit 89b045c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,22 @@ github "ReactiveX/RxSwift" "3.0.0-rc.1"
$ carthage update
```

### [Swift Package Manager](https://github.com/apple/swift-package-manager)

Create a `Package.swift` file.

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

### Manually using git submodules

* Add RxSwift as a submodule
Expand Down

0 comments on commit 89b045c

Please sign in to comment.