-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from purescript-contrib/0.9-updates
Updates for PureScript 0.9.1
- Loading branch information
Showing
7 changed files
with
57 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
/.* | ||
!/.gitignore | ||
!/.jscsrc | ||
!/.jshintrc | ||
!/.travis.yml | ||
/bower_components/ | ||
/node_modules/ | ||
/output/ | ||
/tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- 0.12.7 | ||
dist: trusty | ||
sudo: required | ||
node_js: 6 | ||
install: | ||
- npm install bower -g | ||
- npm install -g bower | ||
- npm install | ||
- bower install | ||
script: | ||
- pulp build | ||
- bower install --production | ||
- npm run -s build | ||
after_success: | ||
- >- | ||
test $TRAVIS_TAG && | ||
echo $GITHUB_TOKEN | pulp login && | ||
echo y | pulp publish --no-push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
# PureScript-Machines | ||
# purescript-machines | ||
|
||
This library helps you build finite state machines. Currently, there's an implementation for mealy machines with halting. | ||
[![Latest release](http://img.shields.io/bower/v/purescript-machines.svg)](https://github.com/purescript-contrib/purescript-machines/releases) | ||
[![Build Status](https://travis-ci.org/purescript-contrib/purescript-machines.svg?branch=master)](https://travis-ci.org/purescript-contrib/purescript-machines) | ||
|
||
**Note**: If you need the ability to produce errors, consume from multiple input tapes, or guarantee resource cleanup, you should probably be using [PureScript Streams](http://github.com/purescript-contrib/purescript-streams) instead. | ||
This library helps you build finite state machines. Currently, there's an implementation for Mealy machines with halting. | ||
|
||
## Installation | ||
|
||
This can be installed with Bower: | ||
|
||
```shell | ||
bower i purescript-machines | ||
``` | ||
|
||
## Documentation | ||
|
||
API docs can be found [here](docs/Data/Machine/Mealy.md). | ||
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-machines). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
{ | ||
"name": "purescript-machines", | ||
"description": "Mealy Machines in PureScript", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"clean": "rimraf output && rimraf .pulp-cache", | ||
"build": "psa \"src/**/*.purs\" \"bower_components/purescript-*/src/**/*.purs\" --censor-lib --strict" | ||
}, | ||
"devDependencies": { | ||
"pulp": "^4.4.0", | ||
"purescript": "^0.7.4" | ||
"purescript-psa": "^0.3.8", | ||
"purescript": "^0.9.1-rc.1", | ||
"rimraf": "^2.5.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters