Skip to content

Commit

Permalink
Updated meta files. Added debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Jan 10, 2014
1 parent 61fab78 commit 069960b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
File renamed without changes.
8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -4,9 +4,12 @@

[![Build Status](http://img.shields.io/travis-ci/docpad/docpad-plugin-restapi.png?branch=master)](http://travis-ci.org/docpad/docpad-plugin-restapi "Check this project's build status on TravisCI")
[![NPM version](http://badge.fury.io/js/docpad-plugin-restapi.png)](https://npmjs.org/package/docpad-plugin-restapi "View this project on NPM")
[![Gittip donate button](http://img.shields.io/gittip/bevry.png)](https://www.gittip.com/bevry/ "Donate weekly to this project using Gittip")
[![Dependency Status](https://david-dm.org/docpad/docpad-plugin-restapi.png?theme=shields.io)](https://david-dm.org/docpad/docpad-plugin-restapi)
[![Development Dependency Status](https://david-dm.org/docpad/docpad-plugin-restapi/dev-status.png?theme=shields.io)](https://david-dm.org/docpad/docpad-plugin-restapi#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 @@ -64,9 +67,10 @@ These amazing people have contributed finances to this project:

Become a sponsor!

[![Gittip donate button](http://img.shields.io/gittip/bevry.png)](https://www.gittip.com/bevry/ "Donate weekly to this project using Gittip")
[![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

Expand Down
17 changes: 10 additions & 7 deletions package.json
Expand Up @@ -9,9 +9,12 @@
"badges": {
"travis": true,
"npm": true,
"gittip": "bevry",
"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 @@ -43,18 +46,18 @@
"node": ">=0.8"
},
"dependencies": {
"taskgroup": "~3.3.0"
"taskgroup": "~3.3.6"
},
"peerDependencies": {
"docpad": ">=6 <7"
},
"devDependencies": {
"docpad": ">=6.55.4 <7",
"rimraf": "~2.2.2",
"docpad": ">=6 <7",
"rimraf": "~2.2.5",
"chai": "~1.8.1",
"superagent": "~0.15.4",
"superagent": "~0.16.0",
"coffee-script": "~1.6.2",
"projectz": "~0.3.2"
"projectz": "~0.3.9"
},
"main": "./out/restapi.plugin.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/restapi.plugin.coffee
Expand Up @@ -303,7 +303,7 @@ module.exports = (BasePlugin) ->
# Log
docpad.log('info', "Created file #{file.getFilePath()} from request")

# Generare
# Generate
docpad.action 'generate', (err) ->
return next(err, file)

Expand Down Expand Up @@ -360,7 +360,7 @@ module.exports = (BasePlugin) ->
# Log
docpad.log('info', "Updated file #{file.getFilePath()} from request")

# Generare
# Generate
docpad.action 'generate', (err) ->
return next(err, file)

Expand Down
2 changes: 1 addition & 1 deletion src/restapi.test.coffee
Expand Up @@ -4,6 +4,6 @@ require('docpad').require('testers').test(
pluginPath: __dirname+'/..'
}
{
#logLevel: 7
logLevel: 7
}
)

0 comments on commit 069960b

Please sign in to comment.