diff --git a/lib/adaptor.js b/lib/adaptor.js index 797d4c9..f56f1e7 100644 --- a/lib/adaptor.js +++ b/lib/adaptor.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Adaptor base class - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Basestar = require("./basestar"), diff --git a/lib/basestar.js b/lib/basestar.js index 3370ba6..805423f 100644 --- a/lib/basestar.js +++ b/lib/basestar.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Basestar base class - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var EventEmitter = require("events").EventEmitter; diff --git a/lib/config.js b/lib/config.js index 3ce19a1..69a11c4 100644 --- a/lib/config.js +++ b/lib/config.js @@ -1,11 +1,3 @@ -/* - * Cylon.js - Internal Configuration - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; module.exports = { diff --git a/lib/cylon.js b/lib/cylon.js index 4757fc0..71a9f44 100644 --- a/lib/cylon.js +++ b/lib/cylon.js @@ -1,11 +1,3 @@ -/* - * Cylon.js - Master Control Program - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Async = require("async"); diff --git a/lib/driver.js b/lib/driver.js index c1c367c..aa0ced0 100644 --- a/lib/driver.js +++ b/lib/driver.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Driver base class - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Basestar = require("./basestar"), diff --git a/lib/initializer.js b/lib/initializer.js index 4dae138..365ded4 100644 --- a/lib/initializer.js +++ b/lib/initializer.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Adaptor/Driver initializer - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Registry = require("./registry"), diff --git a/lib/io/digital-pin.js b/lib/io/digital-pin.js index 9d9e205..a09e3f6 100644 --- a/lib/io/digital-pin.js +++ b/lib/io/digital-pin.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - GPIO Digital Pin class - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - /* eslint no-sync: 0 */ "use strict"; diff --git a/lib/io/utils.js b/lib/io/utils.js index 1756e13..2aa94ad 100644 --- a/lib/io/utils.js +++ b/lib/io/utils.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - I/O Utils - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; module.exports = { diff --git a/lib/logger.js b/lib/logger.js index 511dcbf..fd27ad7 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Logger - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var levels = ["debug", "info", "warn", "error", "fatal"]; diff --git a/lib/logger/basic_logger.js b/lib/logger/basic_logger.js index 8f7ea42..46a6db5 100644 --- a/lib/logger/basic_logger.js +++ b/lib/logger/basic_logger.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Basic Logger - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var getArgs = function(args) { diff --git a/lib/logger/null_logger.js b/lib/logger/null_logger.js index d0b4e55..0daadc8 100644 --- a/lib/logger/null_logger.js +++ b/lib/logger/null_logger.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Null Logger - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; // The NullLogger is designed for cases where you want absolutely nothing to diff --git a/lib/registry.js b/lib/registry.js index 6684fba..3a4f8f1 100644 --- a/lib/registry.js +++ b/lib/registry.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Module Registry - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Logger = require("./logger"), diff --git a/lib/robot.js b/lib/robot.js index 17ebb58..23aef38 100644 --- a/lib/robot.js +++ b/lib/robot.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Robot class - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var initializer = require("./initializer"), diff --git a/lib/test/loopback.js b/lib/test/loopback.js index 3ad4d6f..a6faa7a 100644 --- a/lib/test/loopback.js +++ b/lib/test/loopback.js @@ -1,11 +1,3 @@ -/* - * Cylon.js - Loopback adaptor - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Adaptor = require("../adaptor"), diff --git a/lib/test/ping.js b/lib/test/ping.js index 1148b19..96c6514 100644 --- a/lib/test/ping.js +++ b/lib/test/ping.js @@ -1,11 +1,3 @@ -/* - * Cylon.js - Ping driver - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Driver = require("../driver"), diff --git a/lib/test/test-adaptor.js b/lib/test/test-adaptor.js index e2c4801..a70bf00 100644 --- a/lib/test/test-adaptor.js +++ b/lib/test/test-adaptor.js @@ -1,11 +1,3 @@ -/* - * Cylon.js - Test Adaptor - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Adaptor = require("../adaptor"), diff --git a/lib/test/test-driver.js b/lib/test/test-driver.js index a16afad..248e512 100644 --- a/lib/test/test-driver.js +++ b/lib/test/test-driver.js @@ -1,11 +1,3 @@ -/* - * Cylon.js - Test Driver - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var Driver = require("../driver"), diff --git a/lib/utils.js b/lib/utils.js index ea7ab33..129126f 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -1,11 +1,3 @@ -/* - * Cylon - Utils - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var _ = require("./utils/helpers"); diff --git a/lib/utils/helpers.js b/lib/utils/helpers.js index 0146dc1..e6fcff3 100644 --- a/lib/utils/helpers.js +++ b/lib/utils/helpers.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Helper Utilities - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - "use strict"; var __slice = Array.prototype.slice; diff --git a/lib/utils/monkey-patches.js b/lib/utils/monkey-patches.js index 3ace2ab..13d422c 100644 --- a/lib/utils/monkey-patches.js +++ b/lib/utils/monkey-patches.js @@ -1,11 +1,3 @@ -/** - * Cylon.js - Monkey Patches - * cylonjs.com - * - * Copyright (c) 2013-2015 The Hybrid Group - * Licensed under the Apache 2.0 license. -*/ - /* eslint no-extend-native: 0 key-spacing: 0 */ "use strict";