Skip to content

Commit

Permalink
[dist] Update Copyright and Author to Nodejitsu Inc.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Nov 24, 2011
1 parent 4643a14 commit 6c720ee
Show file tree
Hide file tree
Showing 29 changed files with 32 additions and 29 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/nconf.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* nconf.js: Top-level include for the nconf module
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/common.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* utils.js: Utility functions for the nconf module.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/formats.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* formats.js: Default formats supported by nconf
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/provider.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* provider.js: Abstraction providing an interface into pluggable configuration storage.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/stores/argv.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* argv.js: Simple memory-based store for command-line arguments.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/stores/env.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* env.js: Simple memory-based store for environment variables
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/stores/file.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* file.js: Simple file storage engine for nconf files
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/stores/literal.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* literal.js: Simple literal Object store for nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/nconf/stores/memory.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* memory.js: Simple memory storage engine for nconf configuration(s)
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>",
"author": "Nodejitsu Inc. <[email protected]>",
"contributors": [
{ "name": "Charlie Robbins", "email": "[email protected]" }
],
"repository": {
"type": "git",
"url": "http://github.com/flatiron/nconf.git"
Expand Down
2 changes: 1 addition & 1 deletion test/common-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* common.js: Tests for common utility function in nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/data.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* data.js: Simple data fixture for configuration test.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/nconf-argv.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* default-argv.js: Test fixture for using optimist defaults with nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/nconf-change-argv.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* nconf-change-argv.js: Test fixture for changing argv on the fly
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/nconf-env.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* nconf-env.js: Test fixture for using process.env defaults with nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/nconf-hierarchical-file-argv.js
Original file line number Diff line number Diff line change
@@ -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
*
*/
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/nconf-hierarchical-load-save.js
Original file line number Diff line number Diff line change
@@ -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.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/provider-argv.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* provider-argv.js: Test fixture for using optimist defaults with nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/scripts/provider-env.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* provider-argv.js: Test fixture for using process.env defaults with nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/helpers.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* helpers.js: Test helpers for nconf.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/hierarchy-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* hierarchy-test.js: Basic tests for hierarchical file stores.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/nconf-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* file-store-test.js: Tests for the nconf File store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/provider-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* file-store-test.js: Tests for the nconf File store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/stores/argv-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* argv-test.js: Tests for the nconf argv store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/stores/env-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* env-test.js: Tests for the nconf env store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/stores/file-store-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* file-store-test.js: Tests for the nconf File store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/stores/literal-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* literal-test.js: Tests for the nconf literal store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down
2 changes: 1 addition & 1 deletion test/stores/memory-store-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* memory-store-test.js: Tests for the nconf Memory store.
*
* (C) 2011, Charlie Robbins
* (C) 2011, Nodejitsu Inc.
*
*/

Expand Down

0 comments on commit 6c720ee

Please sign in to comment.