Skip to content

Use List rather than Array #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 10, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/.*
!/.gitignore
!/.jscsrc
!/.jshintrc
!/.travis.yml
/bower_components/
/node_modules/
/output/
/tmp/
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
language: node_js
dist: trusty
sudo: required
node_js:
- 0.10
node_js: 6
env:
- PATH=$HOME/purescript:$PATH
install:
- 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')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
script:
- npm run build
- bower install --production
- npm run -s build
- bower install
- npm -s test
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
23 changes: 11 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
purescript-parsing
==================
# purescript-parsing

[![Latest release](http://img.shields.io/bower/v/purescript-parsing.svg)](https://github.com/purescript/purescript-parsing/releases)
[![Build Status](https://travis-ci.org/purescript-contrib/purescript-parsing.svg?branch=master)](https://travis-ci.org/purescript-contrib/purescript-parsing)
[![Dependency Status](https://www.versioneye.com/user/projects/575abc417757a0003bd4bfae/badge.svg?style=flat)](https://www.versioneye.com/user/projects/575abc417757a0003bd4bfae)
[![Maintainer: paf31](https://img.shields.io/badge/maintainer-paf31-lightgrey.svg)](http://github.com/paf31)

A parser combinator library based on Parsec.
A parser combinator library based on Haskell's Parsec.

- [Module documentation](docs/Text/Parsing/)
- [Example usage](test/Main.purs)
## Installation

### Installing
```
bower install purescript-parsing
```

bower i purescript-parsing
## Documentation

### Building / Testing

bower update
pulp build
pulp test
- [See the tests](test/Main.purs) for some example usages.
- Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-parsing).
20 changes: 9 additions & 11 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,33 @@
"purescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/purescript-contrib/purescript-parsing.git"
},
"ignore": [
"**/.*",
"bower_components",
"node_modules",
"output",
"tests",
"tmp",
"test",
"bower.json",
"Gruntfile.js",
"package.json"
],
"repository": {
"type": "git",
"url": "git://github.com/purescript-contrib/purescript-parsing.git"
},
"dependencies": {
"purescript-arrays": "^1.0.0",
"purescript-either": "^1.0.0",
"purescript-foldable-traversable": "^1.0.0",
"purescript-identity": "^1.0.0",
"purescript-integers": "^1.0.0",
"purescript-lists": "^1.0.0",
"purescript-maybe": "^1.0.0",
"purescript-strings": "^1.0.0",
"purescript-transformers": "^1.0.0",
"purescript-unicode": "^1.0.0",
"purescript-integers": "^1.0.0"
"purescript-unicode": "^1.0.0"
},
"devDependencies": {
"purescript-console": "^1.0.0",
"purescript-assert": "^1.0.0"
"purescript-assert": "^1.0.0",
"purescript-console": "^1.0.0"
}
}
112 changes: 0 additions & 112 deletions docs/Text/Parsing/Parser.md

This file was deleted.

Loading