Skip to content

Commit

Permalink
updated to 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
cryogenian committed Jul 10, 2015
1 parent 1e7cf56 commit 0050b89
Show file tree
Hide file tree
Showing 26 changed files with 452 additions and 400 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -2,12 +2,12 @@ language: node_js
node_js:
- 0.10
env:
- TAG=v0.6.9.3
- TAG=v0.7.0
install:
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- sudo tar zxvf $HOME/purescript.tar.gz -C /usr/local/bin purescript/psc{,i,-docs,-make} --strip-components=1
- sudo chmod a+x /usr/local/bin/psc{,i,-docs,-make}
- sudo tar zxvf $HOME/purescript.tar.gz -C /usr/local/bin purescript/psc{,i,-docs,-bundle} --strip-components=1
- sudo chmod a+x /usr/local/bin/psc{,i,-docs,-bundle}
- npm install bower gulp -g
- npm install && bower install
script:
- gulp bundle-dev
- gulp test-bundle
276 changes: 0 additions & 276 deletions MODULES.md

This file was deleted.

21 changes: 20 additions & 1 deletion README.md
@@ -1,4 +1,23 @@
[![Build Status](https://travis-ci.org/cryogenian/purescript-routing.svg?branch=master)](https://travis-ci.org/cryogenian/purescript-routing)

# purescript-routing

[![Build Status](https://travis-ci.org/cryogenian/purescript-routing.svg?branch=master)](https://travis-ci.org/cryogenian/purescript-routing)
Client side routing library

## Installation

```shell
bower install purescript-routing
```

## Documentation

- [Routing](docs/Routing.md)
- [Routing.Hash](docs/Routing/Hash.md)
- [Routing.Hash.Aff](docs/Routing/Hash/Aff.mfd)
- [Routing.Match](docs/Routing/Match.md)
- [Routing.Match.Class](docs/Routing/Match/Class.md)
- [Routing.Match.Error](docs/Routing/Match/Error.md)
- [Routing.Parser](docs/Routing/Parser.md)
- [Routing.Types](docs/Routing/Types.md)

27 changes: 13 additions & 14 deletions bower.json
Expand Up @@ -18,21 +18,20 @@
"tests"
],
"dependencies": {
"purescript-strings": "~0.4.3",
"purescript-maps": "~0.3.2",
"purescript-control": "~0.2.2",
"purescript-transformers": "~0.5.1",
"purescript-arrays": "~0.3.3",
"purescript-monoid": "~0.2.0",
"purescript-validation": "~0.1.1",
"purescript-semirings": "~0.1.1",
"purescript-lists": "~0.6.0",
"purescript-globals": "~0.1.6",
"purescript-dom": "~0.1.2",
"purescript-aff": "~0.10.0"
"purescript-control": "^0.3.0",
"purescript-transformers": "^0.6.1",
"purescript-maps": "^0.4.0",
"purescript-aff": "^0.11.0",
"purescript-strings": "^0.5.2",
"purescript-arrays": "^0.4.0",
"purescript-lists": "^0.7.0",
"purescript-monoid": "^0.3.0",
"purescript-validation": "^0.2.0",
"purescript-semirings": "^0.2.0",
"purescript-dom": "^0.1.2",
"purescript-globals": "^0.2.0"
},
"devDependencies": {
"purescript-timers": "~0.0.8",
"purescript-debug-foreign": "~0.0.4"
"purescript-console": "^0.1.0"
}
}

0 comments on commit 0050b89

Please sign in to comment.