From 7433cb71ec30e6e1a407fd37ef294ae184adacf3 Mon Sep 17 00:00:00 2001 From: "Jared D. Cottrell" Date: Mon, 3 Jun 2013 16:21:58 -0700 Subject: [PATCH] Adding copyright and license header; renaming LICENSE.txt -> LICENSE --- LICENSE.txt => LICENSE | 0 mongodb-uri.js | 5 +++++ mongodb-uri.mocha.js | 5 +++++ 3 files changed, 10 insertions(+) rename LICENSE.txt => LICENSE (100%) diff --git a/LICENSE.txt b/LICENSE similarity index 100% rename from LICENSE.txt rename to LICENSE diff --git a/mongodb-uri.js b/mongodb-uri.js index c4ba9a8..641f68a 100644 --- a/mongodb-uri.js +++ b/mongodb-uri.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2013 ObjectLabs Corporation + * Distributed under the MIT license - http://opensource.org/licenses/MIT + */ + /** * Creates a parser. * diff --git a/mongodb-uri.mocha.js b/mongodb-uri.mocha.js index 44e25af..b1fabe2 100644 --- a/mongodb-uri.mocha.js +++ b/mongodb-uri.mocha.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2013 ObjectLabs Corporation + * Distributed under the MIT license - http://opensource.org/licenses/MIT + */ + var mongodbUri = require('./mongodb-uri'); var should = require('should');