Skip to content
This repository has been archived by the owner on Sep 3, 2018. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/aureooms/recquire
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Jun 11, 2014
2 parents 9cd8d6b + 45992cf commit 37110cf
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ Recursive require for node
[![Coverage Status](https://coveralls.io/repos/aureooms/recquire/badge.png)](https://coveralls.io/r/aureooms/recquire)
[![Dependencies Status](https://david-dm.org/aureooms/recquire.png)](https://david-dm.org/aureooms/recquire#info=dependencies)
[![devDependencies Status](https://david-dm.org/aureooms/recquire/dev-status.png)](https://david-dm.org/aureooms/recquire#info=devDependencies)
[![Code Climate](https://codeclimate.com/github/aureooms/recquire.png)](https://codeclimate.com/github/aureooms/recquire)
18 changes: 17 additions & 1 deletion js/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/**
* Recquire template.
*
* @param name name of global namespace
* @param index name of index files
* @param intro name of intro files
* @param outro name of outro files
* @param rec whether dirs should have their own namespace
* @param flat whether files should have their own namespace
* @param debug flag whether or not debug messages should be printed
*
*
*/



var recquire_t = function(name, index, intro, outro, rec, flat, debug) {

var fs = require('fs');
Expand Down Expand Up @@ -90,4 +106,4 @@ var recquire_t = function(name, index, intro, outro, rec, flat, debug) {

};

module.exports = recquire_t;
module.exports = recquire_t;
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
},
"devDependencies": {
"qunit": "git://github.com/gotwarlost/node-qunit.git#istanbul-coverage",
"coveralls": "^2.10.0"
"coveralls": "^2.10.0",
"codeclimate-test-reporter": "0.0.3"
}
}

0 comments on commit 37110cf

Please sign in to comment.