Skip to content

Commit

Permalink
readme: add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
twittemb committed Apr 13, 2020
1 parent 635f949 commit f72c3dd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- <a href="#using-spin-in-a-swiftUI-based-app">Using Spin in a SwiftUI based app</a>
- <a href="#using-spin-with-multiple-reactive-frameworks">Using Spin with multiple Reactive Frameworks</a>
- <a href="#demo-applications">Demo applications</a>
- <a href="#installation">Installation</a>
- <a href="#acknowledgements">Acknowledgements</a>

# Change Log
Expand Down Expand Up @@ -390,6 +391,30 @@ In the Spinners organization, you can find 2 demo applications demonstrating the
* A basic counter application: [UIKit version](https://github.com/Spinners/Spin.UIKit.Demo.Basic) and [SwiftUI version](https://github.com/Spinners/Spin.SwiftUI.Demo.Basic)
* A more advanced “network based” application using dependency injection and a coordinator pattern (UIKit): [UIKit version](https://github.com/Spinners/Spin.UIKit.Demo) and [SwiftUI version](https://github.com/Spinners/Spin.SwiftUI.Demo)

# Installation

## Swift Package Manager

Add this URL to your dependencies:

```
https://github.com/Spinners/Spin.Swift.git
```

## Carthage

Add the following entry to your Cartfile:

```
github "Spinners/Spin.Swift" ~> 0.16
```

and then:

```
carthage update Spin.Swift
```

# Acknowledgements

The advanced demo applications use [Alamofire](https://github.com/Alamofire/Alamofire) for their network stack, [Swinject](https://github.com/Swinject/Swinject) for dependency injection, [Reusable](https://github.com/AliSoftware/Reusable) for view instantiation (UIKit version) and [RxFlow](https://github.com/RxSwiftCommunity/RxFlow) for the coordinator pattern (UIKit version).
Expand Down

0 comments on commit f72c3dd

Please sign in to comment.