Pushing changes
This commit is contained in:
7
node_modules/options/.npmignore
generated
vendored
Normal file
7
node_modules/options/.npmignore
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
npm-debug.log
|
||||
node_modules
|
||||
.*.swp
|
||||
.lock-*
|
||||
build/
|
||||
|
||||
test
|
12
node_modules/options/Makefile
generated
vendored
Normal file
12
node_modules/options/Makefile
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
ALL_TESTS = $(shell find test/ -name '*.test.js')
|
||||
|
||||
run-tests:
|
||||
@./node_modules/.bin/mocha \
|
||||
-t 2000 \
|
||||
$(TESTFLAGS) \
|
||||
$(TESTS)
|
||||
|
||||
test:
|
||||
@$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
|
||||
|
||||
.PHONY: test
|
69
node_modules/options/README.md
generated
vendored
Normal file
69
node_modules/options/README.md
generated
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
# options.js #
|
||||
|
||||
A very light-weight in-code option parsers for node.js.
|
||||
|
||||
## Usage ##
|
||||
|
||||
``` js
|
||||
var Options = require("options");
|
||||
|
||||
// Create an Options object
|
||||
function foo(options) {
|
||||
var default_options = {
|
||||
foo : "bar"
|
||||
};
|
||||
|
||||
// Create an option object with default value
|
||||
var opts = new Options(default_options);
|
||||
|
||||
// Merge options
|
||||
opts = opts.merge(options);
|
||||
|
||||
// Reset to default value
|
||||
opts.reset();
|
||||
|
||||
// Copy selected attributes out
|
||||
var seled_att = opts.copy("foo");
|
||||
|
||||
// Read json options from a file.
|
||||
opts.read("options.file"); // Sync
|
||||
opts.read("options.file", function(err){ // Async
|
||||
if(err){ // If error occurs
|
||||
console.log("File error.");
|
||||
}else{
|
||||
// No error
|
||||
}
|
||||
});
|
||||
|
||||
// Attributes defined or not
|
||||
opts.isDefinedAndNonNull("foobar");
|
||||
opts.isDefined("foobar");
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
## License ##
|
||||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2012 Einar Otto Stangvik <einaros@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
86
node_modules/options/lib/options.js
generated
vendored
Normal file
86
node_modules/options/lib/options.js
generated
vendored
Normal file
@ -0,0 +1,86 @@
|
||||
/*!
|
||||
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
var fs = require('fs');
|
||||
|
||||
function Options(defaults) {
|
||||
var internalValues = {};
|
||||
var values = this.value = {};
|
||||
Object.keys(defaults).forEach(function(key) {
|
||||
internalValues[key] = defaults[key];
|
||||
Object.defineProperty(values, key, {
|
||||
get: function() { return internalValues[key]; },
|
||||
configurable: false,
|
||||
enumerable: true
|
||||
});
|
||||
});
|
||||
this.reset = function() {
|
||||
Object.keys(defaults).forEach(function(key) {
|
||||
internalValues[key] = defaults[key];
|
||||
});
|
||||
return this;
|
||||
};
|
||||
this.merge = function(options, required) {
|
||||
options = options || {};
|
||||
if (Object.prototype.toString.call(required) === '[object Array]') {
|
||||
var missing = [];
|
||||
for (var i = 0, l = required.length; i < l; ++i) {
|
||||
var key = required[i];
|
||||
if (!(key in options)) {
|
||||
missing.push(key);
|
||||
}
|
||||
}
|
||||
if (missing.length > 0) {
|
||||
if (missing.length > 1) {
|
||||
throw new Error('options ' +
|
||||
missing.slice(0, missing.length - 1).join(', ') + ' and ' +
|
||||
missing[missing.length - 1] + ' must be defined');
|
||||
}
|
||||
else throw new Error('option ' + missing[0] + ' must be defined');
|
||||
}
|
||||
}
|
||||
Object.keys(options).forEach(function(key) {
|
||||
if (key in internalValues) {
|
||||
internalValues[key] = options[key];
|
||||
}
|
||||
});
|
||||
return this;
|
||||
};
|
||||
this.copy = function(keys) {
|
||||
var obj = {};
|
||||
Object.keys(defaults).forEach(function(key) {
|
||||
if (keys.indexOf(key) !== -1) {
|
||||
obj[key] = values[key];
|
||||
}
|
||||
});
|
||||
return obj;
|
||||
};
|
||||
this.read = function(filename, cb) {
|
||||
if (typeof cb == 'function') {
|
||||
var self = this;
|
||||
fs.readFile(filename, function(error, data) {
|
||||
if (error) return cb(error);
|
||||
var conf = JSON.parse(data);
|
||||
self.merge(conf);
|
||||
cb();
|
||||
});
|
||||
}
|
||||
else {
|
||||
var conf = JSON.parse(fs.readFileSync(filename));
|
||||
this.merge(conf);
|
||||
}
|
||||
return this;
|
||||
};
|
||||
this.isDefined = function(key) {
|
||||
return typeof values[key] != 'undefined';
|
||||
};
|
||||
this.isDefinedAndNonNull = function(key) {
|
||||
return typeof values[key] != 'undefined' && values[key] !== null;
|
||||
};
|
||||
Object.freeze(values);
|
||||
Object.freeze(this);
|
||||
}
|
||||
|
||||
module.exports = Options;
|
84
node_modules/options/package.json
generated
vendored
Normal file
84
node_modules/options/package.json
generated
vendored
Normal file
@ -0,0 +1,84 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
{
|
||||
"raw": "options@>=0.0.5",
|
||||
"scope": null,
|
||||
"escapedName": "options",
|
||||
"name": "options",
|
||||
"rawSpec": ">=0.0.5",
|
||||
"spec": ">=0.0.5",
|
||||
"type": "range"
|
||||
},
|
||||
"/home/burchettm/statsbot/node_modules/ws"
|
||||
]
|
||||
],
|
||||
"_from": "options@>=0.0.5",
|
||||
"_id": "options@0.0.6",
|
||||
"_inCache": true,
|
||||
"_location": "/options",
|
||||
"_npmUser": {
|
||||
"name": "einaros",
|
||||
"email": "einaros@gmail.com"
|
||||
},
|
||||
"_npmVersion": "1.4.21",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"raw": "options@>=0.0.5",
|
||||
"scope": null,
|
||||
"escapedName": "options",
|
||||
"name": "options",
|
||||
"rawSpec": ">=0.0.5",
|
||||
"spec": ">=0.0.5",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/ws"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz",
|
||||
"_shasum": "ec22d312806bb53e731773e7cdaefcf1c643128f",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "options@>=0.0.5",
|
||||
"_where": "/home/burchettm/statsbot/node_modules/ws",
|
||||
"author": {
|
||||
"name": "Einar Otto Stangvik",
|
||||
"email": "einaros@gmail.com",
|
||||
"url": "http://2x.io"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/einaros/options.js/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "A very light-weight in-code option parsers for node.js.",
|
||||
"devDependencies": {
|
||||
"mocha": "latest"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"shasum": "ec22d312806bb53e731773e7cdaefcf1c643128f",
|
||||
"tarball": "https://registry.npmjs.org/options/-/options-0.0.6.tgz"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
},
|
||||
"gitHead": "ff53d0a092c897cb95964232a96fe17da65c11af",
|
||||
"homepage": "https://github.com/einaros/options.js",
|
||||
"main": "lib/options",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "einaros",
|
||||
"email": "einaros@gmail.com"
|
||||
}
|
||||
],
|
||||
"name": "options",
|
||||
"optionalDependencies": {},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/einaros/options.js.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
},
|
||||
"version": "0.0.6"
|
||||
}
|
Reference in New Issue
Block a user