Skip to content

Commit 074102e

Browse files
committed
Merge pull request #28 from purescript/0.8-updates
0.8 updates
2 parents 71dfbec + 3c42474 commit 074102e

30 files changed

+164
-684
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
/bower_components/
55
/node_modules/
66
/output/
7-
/tmp/

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- 0.10
4+
- 5
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
88
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
99
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
1010
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1111
- chmod a+x $HOME/purescript
12+
- npm install -g bower
1213
- npm install
1314
script:
1415
- npm run build
16+
after_success:
17+
- >-
18+
test $TRAVIS_TAG &&
19+
psc-publish > .pursuit.json &&
20+
curl -X POST http://pursuit.purescript.org/packages \
21+
-d @.pursuit.json \
22+
-H 'Accept: application/json' \
23+
-H "Authorization: token ${GITHUB_TOKEN}"

README.md

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,8 @@ bower install purescript-control
1414

1515
## Class hierarchy
1616

17-
![Class diagram](docs/class-diagram.png)
17+
![Class diagram](class-diagram.png)
1818

19-
## Module documentation
19+
## Documentation
2020

21-
### Functor/Applicative
22-
- [Data.Functor](docs/Data/Functor.md)
23-
- [Control.Apply](docs/Control/Apply.md)
24-
25-
### Monad
26-
- [Control.Bind](docs/Control/Bind.md)
27-
- [Control.Monad](docs/Control/Monad.md)
28-
29-
### Alternative/MonadPlus
30-
- [Control.Alt](docs/Control/Alt.md)
31-
- [Control.Plus](docs/Control/Plus.md)
32-
- [Control.Alternative](docs/Control/Alternative.md)
33-
- [Control.MonadPlus](docs/Control/MonadPlus.md)
34-
35-
### Comonads
36-
- [Control.Extend](docs/Control/Extend.md)
37-
- [Control.Comonad](docs/Control/Comonad.md)
38-
39-
### Lazy
40-
- [Control.Lazy](docs/Control/Lazy.md)
21+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-control).

bower.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
"name": "purescript-control",
33
"homepage": "https://github.com/purescript/purescript-control",
44
"description": "Common control classes and utility functions",
5-
"keywords": [
6-
"purescript",
7-
"functor",
8-
"applicative",
9-
"monad",
10-
"comonad"
11-
],
125
"license": "MIT",
136
"repository": {
147
"type": "git",
@@ -21,10 +14,9 @@
2114
"output",
2215
"test",
2316
"bower.json",
24-
"gulpfile.js",
2517
"package.json"
2618
],
2719
"dependencies": {
28-
"purescript-prelude": "^0.1.0"
20+
"purescript-prelude": "^1.0.0-rc.1"
2921
}
3022
}

class-diagram.png

47.9 KB
Loading

docs/Control/Alt.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

docs/Control/Alternative.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

docs/Control/Apply.md

Lines changed: 0 additions & 61 deletions
This file was deleted.

docs/Control/Bind.md

Lines changed: 0 additions & 67 deletions
This file was deleted.

docs/Control/Comonad.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)