From 6c720ee109b046e057a3cc0abd9d128fb54bc705 Mon Sep 17 00:00:00 2001 From: indexzero Date: Thu, 24 Nov 2011 00:33:08 -0500 Subject: [PATCH] [dist] Update Copyright and Author to Nodejitsu Inc. --- LICENSE | 2 +- lib/nconf.js | 2 +- lib/nconf/common.js | 2 +- lib/nconf/formats.js | 2 +- lib/nconf/provider.js | 2 +- lib/nconf/stores/argv.js | 2 +- lib/nconf/stores/env.js | 2 +- lib/nconf/stores/file.js | 2 +- lib/nconf/stores/literal.js | 2 +- lib/nconf/stores/memory.js | 2 +- package.json | 5 ++++- test/common-test.js | 2 +- test/fixtures/data.js | 2 +- test/fixtures/scripts/nconf-argv.js | 2 +- test/fixtures/scripts/nconf-change-argv.js | 2 +- test/fixtures/scripts/nconf-env.js | 2 +- test/fixtures/scripts/nconf-hierarchical-file-argv.js | 2 +- test/fixtures/scripts/nconf-hierarchical-load-save.js | 2 +- test/fixtures/scripts/provider-argv.js | 2 +- test/fixtures/scripts/provider-env.js | 2 +- test/helpers.js | 2 +- test/hierarchy-test.js | 2 +- test/nconf-test.js | 2 +- test/provider-test.js | 2 +- test/stores/argv-test.js | 2 +- test/stores/env-test.js | 2 +- test/stores/file-store-test.js | 2 +- test/stores/literal-test.js | 2 +- test/stores/memory-store-test.js | 2 +- 29 files changed, 32 insertions(+), 29 deletions(-) diff --git a/LICENSE b/LICENSE index 580fa7e..1f01e2b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011 Charlie Robbins +Copyright (c) 2011 Nodejitsu Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lib/nconf.js b/lib/nconf.js index 299a0b2..503b52d 100644 --- a/lib/nconf.js +++ b/lib/nconf.js @@ -1,7 +1,7 @@ /* * nconf.js: Top-level include for the nconf module * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/common.js b/lib/nconf/common.js index 0a1589c..50efb3a 100644 --- a/lib/nconf/common.js +++ b/lib/nconf/common.js @@ -1,7 +1,7 @@ /* * utils.js: Utility functions for the nconf module. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/formats.js b/lib/nconf/formats.js index 465abe3..df7783f 100644 --- a/lib/nconf/formats.js +++ b/lib/nconf/formats.js @@ -1,7 +1,7 @@ /* * formats.js: Default formats supported by nconf * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/provider.js b/lib/nconf/provider.js index 22a6c1a..65e4920 100644 --- a/lib/nconf/provider.js +++ b/lib/nconf/provider.js @@ -1,7 +1,7 @@ /* * provider.js: Abstraction providing an interface into pluggable configuration storage. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/stores/argv.js b/lib/nconf/stores/argv.js index 3e7124b..befad1d 100644 --- a/lib/nconf/stores/argv.js +++ b/lib/nconf/stores/argv.js @@ -1,7 +1,7 @@ /* * argv.js: Simple memory-based store for command-line arguments. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/stores/env.js b/lib/nconf/stores/env.js index 89bffd9..cae922b 100644 --- a/lib/nconf/stores/env.js +++ b/lib/nconf/stores/env.js @@ -1,7 +1,7 @@ /* * env.js: Simple memory-based store for environment variables * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/stores/file.js b/lib/nconf/stores/file.js index 4c144db..cf5c63f 100644 --- a/lib/nconf/stores/file.js +++ b/lib/nconf/stores/file.js @@ -1,7 +1,7 @@ /* * file.js: Simple file storage engine for nconf files * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/stores/literal.js b/lib/nconf/stores/literal.js index ed87bab..55c64cc 100644 --- a/lib/nconf/stores/literal.js +++ b/lib/nconf/stores/literal.js @@ -1,7 +1,7 @@ /* * literal.js: Simple literal Object store for nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/lib/nconf/stores/memory.js b/lib/nconf/stores/memory.js index 887e228..f571759 100644 --- a/lib/nconf/stores/memory.js +++ b/lib/nconf/stores/memory.js @@ -1,7 +1,7 @@ /* * memory.js: Simple memory storage engine for nconf configuration(s) * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/package.json b/package.json index 5ffe4a3..dd1b7f9 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,10 @@ "name": "nconf", "description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.", "version": "0.4.6", - "author": "Charlie Robbins ", + "author": "Nodejitsu Inc. ", + "contributors": [ + { "name": "Charlie Robbins", "email": "charlie@nodejitsu.com" } + ], "repository": { "type": "git", "url": "http://github.com/flatiron/nconf.git" diff --git a/test/common-test.js b/test/common-test.js index b70ce2a..9924372 100644 --- a/test/common-test.js +++ b/test/common-test.js @@ -1,7 +1,7 @@ /* * common.js: Tests for common utility function in nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/data.js b/test/fixtures/data.js index de9f504..604dc05 100644 --- a/test/fixtures/data.js +++ b/test/fixtures/data.js @@ -1,7 +1,7 @@ /* * data.js: Simple data fixture for configuration test. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/scripts/nconf-argv.js b/test/fixtures/scripts/nconf-argv.js index 898da29..65de175 100644 --- a/test/fixtures/scripts/nconf-argv.js +++ b/test/fixtures/scripts/nconf-argv.js @@ -1,7 +1,7 @@ /* * default-argv.js: Test fixture for using optimist defaults with nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/scripts/nconf-change-argv.js b/test/fixtures/scripts/nconf-change-argv.js index 032274b..7b2e7a0 100644 --- a/test/fixtures/scripts/nconf-change-argv.js +++ b/test/fixtures/scripts/nconf-change-argv.js @@ -1,7 +1,7 @@ /* * nconf-change-argv.js: Test fixture for changing argv on the fly * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/scripts/nconf-env.js b/test/fixtures/scripts/nconf-env.js index 321e32e..e8032de 100644 --- a/test/fixtures/scripts/nconf-env.js +++ b/test/fixtures/scripts/nconf-env.js @@ -1,7 +1,7 @@ /* * nconf-env.js: Test fixture for using process.env defaults with nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/scripts/nconf-hierarchical-file-argv.js b/test/fixtures/scripts/nconf-hierarchical-file-argv.js index 6585893..54e58b0 100644 --- a/test/fixtures/scripts/nconf-hierarchical-file-argv.js +++ b/test/fixtures/scripts/nconf-hierarchical-file-argv.js @@ -1,7 +1,7 @@ /* * nconf-hierarchical-file-argv.js: Test fixture for using optimist defaults and a file store with nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * (C) 2011, Sander Tolsma * */ diff --git a/test/fixtures/scripts/nconf-hierarchical-load-save.js b/test/fixtures/scripts/nconf-hierarchical-load-save.js index 689e4b8..ae2771e 100644 --- a/test/fixtures/scripts/nconf-hierarchical-load-save.js +++ b/test/fixtures/scripts/nconf-hierarchical-load-save.js @@ -1,7 +1,7 @@ /* * nconf-hierarchical-load-save.js: Test fixture for using optimist, envvars and a file store with nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/scripts/provider-argv.js b/test/fixtures/scripts/provider-argv.js index 48cb2b1..0492474 100644 --- a/test/fixtures/scripts/provider-argv.js +++ b/test/fixtures/scripts/provider-argv.js @@ -1,7 +1,7 @@ /* * provider-argv.js: Test fixture for using optimist defaults with nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/fixtures/scripts/provider-env.js b/test/fixtures/scripts/provider-env.js index 1f3032c..e5027b4 100644 --- a/test/fixtures/scripts/provider-env.js +++ b/test/fixtures/scripts/provider-env.js @@ -1,7 +1,7 @@ /* * provider-argv.js: Test fixture for using process.env defaults with nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/helpers.js b/test/helpers.js index ce7aff5..c1ac598 100644 --- a/test/helpers.js +++ b/test/helpers.js @@ -1,7 +1,7 @@ /* * helpers.js: Test helpers for nconf. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/hierarchy-test.js b/test/hierarchy-test.js index 048d670..1ef8b7c 100644 --- a/test/hierarchy-test.js +++ b/test/hierarchy-test.js @@ -1,7 +1,7 @@ /* * hierarchy-test.js: Basic tests for hierarchical file stores. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/nconf-test.js b/test/nconf-test.js index 44f613e..26d04f0 100644 --- a/test/nconf-test.js +++ b/test/nconf-test.js @@ -1,7 +1,7 @@ /* * file-store-test.js: Tests for the nconf File store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/provider-test.js b/test/provider-test.js index 407e81b..c0559b6 100644 --- a/test/provider-test.js +++ b/test/provider-test.js @@ -1,7 +1,7 @@ /* * file-store-test.js: Tests for the nconf File store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/stores/argv-test.js b/test/stores/argv-test.js index 764daab..9dbf3a9 100644 --- a/test/stores/argv-test.js +++ b/test/stores/argv-test.js @@ -1,7 +1,7 @@ /* * argv-test.js: Tests for the nconf argv store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/stores/env-test.js b/test/stores/env-test.js index e3c2bca..e96b05f 100644 --- a/test/stores/env-test.js +++ b/test/stores/env-test.js @@ -1,7 +1,7 @@ /* * env-test.js: Tests for the nconf env store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/stores/file-store-test.js b/test/stores/file-store-test.js index fd1fc38..22292b7 100644 --- a/test/stores/file-store-test.js +++ b/test/stores/file-store-test.js @@ -1,7 +1,7 @@ /* * file-store-test.js: Tests for the nconf File store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/stores/literal-test.js b/test/stores/literal-test.js index b5e5ac1..368ebe5 100644 --- a/test/stores/literal-test.js +++ b/test/stores/literal-test.js @@ -1,7 +1,7 @@ /* * literal-test.js: Tests for the nconf literal store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */ diff --git a/test/stores/memory-store-test.js b/test/stores/memory-store-test.js index aa3f095..a64c8d3 100644 --- a/test/stores/memory-store-test.js +++ b/test/stores/memory-store-test.js @@ -1,7 +1,7 @@ /* * memory-store-test.js: Tests for the nconf Memory store. * - * (C) 2011, Charlie Robbins + * (C) 2011, Nodejitsu Inc. * */