Skip to content

Commit 54b7f9e

Browse files
committed
Merge pull request #8 from garyb/updates
Fix warnings for psc 0.8, minor improvements
2 parents 43e612f + cd5354b commit 54b7f9e

30 files changed

+441
-1266
lines changed

.travis.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
language: node_js
2-
sudo: false
3-
node_js:
4-
- 0.10
5-
env:
6-
- TAG=v0.7.0 PATH=$HOME/bin:$PATH
2+
dist: trusty
3+
sudo: required
4+
node_js: 5
75
install:
8-
- npm install bower gulp -g
9-
- npm install && bower install
6+
- npm install
7+
- npm install -g bower
8+
- bower install
109
script:
11-
- gulp
10+
- npm test
11+
after_success:
12+
- >-
13+
test $TRAVIS_TAG &&
14+
node_modules/.bin/psc-publish > .pursuit.json &&
15+
curl -X POST http://pursuit.purescript.org/packages \
16+
-d @.pursuit.json \
17+
-H 'Accept: application/json' \
18+
-H "Authorization: token ${GITHUB_TOKEN}"

README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@ A type-safe parser, printer, and ADT for URLs and URIs based on [RFC 3986](http:
1010
bower install purescript-uri
1111
```
1212

13-
## Module documentation
13+
## Documentation
1414

15-
- [Data.URI](docs/Data.URI.md)
16-
- [Data.URI.Types](docs/Data.URI.Types.md)
17-
18-
### Component parsing
19-
20-
- [Data.URI.Authority](docs/Data.URI.Authority.md)
21-
- [Data.URI.Common](docs/Data.URI.Common.md)
22-
- [Data.URI.Host](docs/Data.URI.Host.md)
23-
- [Data.URI.Path](docs/Data.URI.Path.md)
24-
- [Data.URI.Query](docs/Data.URI.Query.md)
25-
- [Data.URI.Scheme](docs/Data.URI.Scheme.md)
26-
- [Data.URI.UserInfo](docs/Data.URI.UserInfo.md)
15+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-uri).

bower.json

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,25 @@
22
"name": "purescript-uri",
33
"homepage": "https://github.com/slamdata/purescript-uri",
44
"description": "A type-safe parser, printer, and ADT for URLs and URIs. ",
5-
"keywords": [
6-
"purescript",
7-
"parser",
8-
"uri"
9-
],
105
"license": "Apache 2.0",
6+
"repository": {
7+
"type": "git",
8+
"url": "git://github.com/slamdata/purescript-uri.git"
9+
},
1110
"ignore": [
1211
"**/.*",
1312
"bower_components",
1413
"node_modules",
14+
"output",
15+
"test",
1516
"bower.json",
16-
"gulpfile.js",
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-arrays": "~0.4.4",
21-
"purescript-either": "~0.2.3",
22-
"purescript-functions": "~0.1.0",
23-
"purescript-globals": "~0.2.2",
24-
"purescript-integers": "~0.2.1",
25-
"purescript-lists": "~0.7.8",
26-
"purescript-maps": "~0.5.4",
27-
"purescript-pathy": "~0.3.0",
28-
"purescript-string-parsers": "~0.6.3"
29-
},
30-
"devDependencies": {
31-
"purescript-exceptions": "~0.3.0"
20+
"purescript-globals": "^0.2.2",
21+
"purescript-integers": "^0.2.1",
22+
"purescript-maps": "^0.5.7",
23+
"purescript-pathy": "^0.3.1",
24+
"purescript-string-parsers": "^0.6.7"
3225
}
3326
}

docs/Data.URI.Authority.md

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

docs/Data.URI.Common.md

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

docs/Data.URI.Host.md

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

docs/Data.URI.Path.md

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

docs/Data.URI.Query.md

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

docs/Data.URI.Scheme.md

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

0 commit comments

Comments
 (0)