Skip to content

Commit

Permalink
Fixed documentation link.
Browse files Browse the repository at this point in the history
  • Loading branch information
assaf committed Dec 22, 2010
1 parent 47bfd4d commit c59ef32
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
Version 0.6.3 2010-12-21

Fixed documentation link.

Version 0.6.2 2010-12-21

First NPM release.
Expand Down
10 changes: 9 additions & 1 deletion Cakefile
Expand Up @@ -72,14 +72,22 @@ documentSource = (callback)->
exec "mkdir -p html && cp -rf docs/ html/source && rm -rf docs", (err)->
callback err

generateMan = (callback)->
log "Generating man files ...", green
exec "ronn --man README.md", (err, stdout, stderr)->
log stdout, green
log stderr, red
callback err

generateDocs = (callback)->
log "Generating documentation ...", green
documentPages (err)->
return callback(err) if err
documentSource (err)->
callback err
task "doc:pages", -> documentPages (err)-> throw err if err
task "doc:pages", -> documentPages (err)-> throw err if err
task "doc:source", -> documentSource (err)-> throw err if err
task "doc:man", -> generateMan (err)-> throw err if err
task "doc", "Generate documentation", -> generateDocs (err)-> throw err if err


Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,8 +1,8 @@
{
"name": "zombie",
"version": "0.6.2",
"version": "0.6.3",
"description": "Superfast headless full stack testing framework using node.js",
"homepage": "https://zombie.labnotes.org/",
"homepage": "http://zombie.labnotes.org/",
"author": "Assaf Arkin <assaf@labnotes.org> (http://labnotes.org/)",
"keywords": [
"test",
Expand Down

0 comments on commit c59ef32

Please sign in to comment.