Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Feb 8, 2014
1 parent 98c0244 commit 54070fe
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.3.8 November 7, 2013
# v1.3.14 February 6, 2014
# https://github.com/bevry/base
language: node_js
install: "npm install; ./node_modules/.bin/cake install"
Expand All @@ -7,9 +7,12 @@ script: "npm test"
node_js:
- "0.8"
- "0.10"
cache:
directories:
- node_modules
notifications:
irc:
- "irc.freenode.org#bevry-dev"
email:
recipients:
- travisci@bevry.me
- travisci@bevry.me
File renamed without changes.
10 changes: 7 additions & 3 deletions Cakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.3.12 December 13, 2013
# v1.3.13 December 19, 2013
# https://github.com/bevry/base


Expand Down Expand Up @@ -51,7 +51,9 @@ for own key,value of config
# Generic

{spawn, exec} = require('child_process')

safe = (next,fn) ->
next ?= (err) -> console.log(err.stack ? err)
fn ?= next # support only one argument
return (err) ->
# success status code
Expand Down Expand Up @@ -152,11 +154,13 @@ actions =
step2 = ->
return step3() if !config.COFFEE_SRC_PATH or !fsUtil.existsSync(COFFEE)
console.log('coffee watch')
spawn(COFFEE, ['-wco', config.COFFEE_OUT_PATH, config.COFFEE_SRC_PATH], {stdio:'inherit', cwd:APP_PATH}).on('close', safe next, step3)
spawn(COFFEE, ['-wco', config.COFFEE_OUT_PATH, config.COFFEE_SRC_PATH], {stdio:'inherit', cwd:APP_PATH}).on('close', safe) # background
step3() # continue while coffee runs in background
step3 = ->
return step4() if !config.DOCPAD_SRC_PATH or !fsUtil.existsSync(DOCPAD)
console.log('docpad run')
spawn(DOCPAD, ['run'], {stdio:'inherit', cwd:APP_PATH}).on('close', safe next, step4)
spawn(DOCPAD, ['run'], {stdio:'inherit', cwd:APP_PATH}).on('close', safe) # background
step4() # continue while docpad runs in background
step4 = next

# Start
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@

[![Build Status](http://img.shields.io/travis-ci/docpad/docpad-plugin-tags.png?branch=master)](http://travis-ci.org/docpad/docpad-plugin-tags "Check this project's build status on TravisCI")
[![NPM version](http://badge.fury.io/js/docpad-plugin-tags.png)](https://npmjs.org/package/docpad-plugin-tags "View this project on NPM")
[![Dependency Status](https://david-dm.org/docpad/docpad-plugin-tags.png?theme=shields.io)](https://david-dm.org/docpad/docpad-plugin-tags)
[![Development Dependency Status](https://david-dm.org/docpad/docpad-plugin-tags/dev-status.png?theme=shields.io)](https://david-dm.org/docpad/docpad-plugin-tags#info=devDependencies)<br/>
[![Gittip donate button](http://img.shields.io/gittip/docpad.png)](https://www.gittip.com/docpad/ "Donate weekly to this project using Gittip")
[![Flattr donate button](http://img.shields.io/flattr/donate.png?color=yellow)](http://flattr.com/thing/344188/balupton-on-Flattr "Donate monthly to this project using Flattr")
[![PayPayl donate button](http://img.shields.io/paypal/donate.png?color=yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QB8GQPZAH84N6 "Donate once-off to this project using Paypal")
[![BitCoin donate button](http://img.shields.io/bitcoin/donate.png?color=yellow)](https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a "Donate once-off to this project using BitCoin")

<!-- /BADGES -->

Expand Down Expand Up @@ -95,12 +98,13 @@ No sponsors yet! Will you be the first?
[![Gittip donate button](http://img.shields.io/gittip/docpad.png)](https://www.gittip.com/docpad/ "Donate weekly to this project using Gittip")
[![Flattr donate button](http://img.shields.io/flattr/donate.png?color=yellow)](http://flattr.com/thing/344188/balupton-on-Flattr "Donate monthly to this project using Flattr")
[![PayPayl donate button](http://img.shields.io/paypal/donate.png?color=yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QB8GQPZAH84N6 "Donate once-off to this project using Paypal")
[![BitCoin donate button](http://img.shields.io/bitcoin/donate.png?color=yellow)](https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a "Donate once-off to this project using BitCoin")

### Contributors

These amazing people have contributed code to this project:

- Benjamin Lupton <b@lupton.cc> (https://github.com/balupton) - [view contributions](https://github.com/docpad/docpad-plugin-tags/commits?author=balupton)
- [Benjamin Lupton](https://github.com/balupton) <b@lupton.cc> [view contributions](https://github.com/docpad/docpad-plugin-tags/commits?author=balupton)

[Become a contributor!](https://github.com/docpad/docpad-plugin-tags/blob/master/CONTRIBUTING.md#files)

Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
"badges": {
"travis": true,
"npm": true,
"david": true,
"daviddev": true,
"gittip": "docpad",
"flattr": "344188/balupton-on-Flattr",
"paypal": "QB8GQPZAH84N6"
"paypal": "QB8GQPZAH84N6",
"bitcoin": "https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a"
},
"keywords": [
"docpad",
Expand Down Expand Up @@ -44,7 +47,7 @@
"devDependencies": {
"docpad": ">=6.46 <7",
"coffee-script": "~1.6.2",
"projectz": "~0.3.0"
"projectz": "~0.3.9"
},
"main": "./out/tags.plugin.js",
"scripts": {
Expand Down

0 comments on commit 54070fe

Please sign in to comment.