You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,34 @@
7
7
8
8
*A lightweight, operation based, multi-store Flux implementation in Swift.*
9
9
10
+
## Installation
11
+
12
+
If you are using **CocoaPods**:
13
+
14
+
15
+
Add the following to your [Podfile](https://guides.cocoapods.org/using/the-podfile.html):
16
+
17
+
```ruby
18
+
pod 'DispatchStore', '~> 0.1'
19
+
```
20
+
21
+
If you are using **Carthage**:
22
+
23
+
24
+
To install Carthage, run (using Homebrew):
25
+
26
+
```bash
27
+
$ brew update
28
+
$ brew install carthage
29
+
```
30
+
31
+
Then add the following line to your `Cartfile`:
32
+
33
+
```
34
+
github "alexdrone/Dispatch" "master"
35
+
```
36
+
37
+
## Overview
10
38
11
39
**Dispatch** is a [Flux](https://facebook.github.io/flux/docs/overview.html)-like implementation of the unidirectional data flow architecture in Swift.
12
40
Flux applications have three major parts: the dispatcher, the stores, and the views.
0 commit comments