adds info about the source of the lib/* files

This commit is contained in:
Todd Treece 2015-08-17 10:54:25 -04:00
parent c165aca080
commit a648ffbdab
9 changed files with 36 additions and 1 deletions

View file

@ -1,3 +1,7 @@
// this file is a modified version of the v0.2.1 easel local OS X
// install. you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var io = require('socket.io')
, http = require('http')
, WebsocketController = require('./lib/websocket_controller')

View file

@ -1,3 +1,6 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
exports.logger = function() {
var logger = function(name) {

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var ErrorHandler = (function () {
return {
@ -8,4 +12,4 @@ var ErrorHandler = (function () {
}
})();
module.exports = ErrorHandler;
module.exports = ErrorHandler;

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
module.exports = function(that) {
var listeners = [];

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var interval = function(callback) {
var id = null;

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var _ = require('underscore')._
, fs = require('fs')
, readline = require('readline')

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var _ = require('underscore')._
, Debugger = require('./debugger')
, eventDispatcher = require('./event_dispatcher');

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var errorHandler = require('./error_handler')
, SP = require('serialport')
, Debugger = require('./debugger')

View file

@ -1,3 +1,7 @@
// this file is part of the v0.2.1 easel local OS X install.
// you can find out more about easel and the x-carve at
// inventables.com & easel.inventables.com
var Machine = require('./machine')
, SerialPortController = require('./serial_port_controller')
, path = require('path')