diff --git a/docs/nconf.html b/docs/nconf.html index 91687c4..9acb38e 100644 --- a/docs/nconf.html +++ b/docs/nconf.html @@ -6,7 +6,7 @@ */ var Provider = require('./nconf/provider').Provider, - nconf = module.exports = Object.create(Provider.prototype);

Use the memory engine by default.

nconf.use('memory');

Version 0.1.9 :: 5/16/2011

nconf.version = [0, 1, 9];

function path (key)

+ nconf = module.exports = Object.create(Provider.prototype);

Use the memory engine by default.

nconf.use('memory');

Expose the version from the package.json using pkginfo.

require('pkginfo')('version');

function path (key)

@key {string} The ':' delimited key to split

diff --git a/docs/nconf/provider.html b/docs/nconf/provider.html index 776fb86..18fa71d 100644 --- a/docs/nconf/provider.html +++ b/docs/nconf/provider.html @@ -1,4 +1,4 @@ - provider.js
Jump To …

provider.js

/*
+      provider.js           

provider.js

/*
  * provider.js: Abstraction providing an interface into pluggable configuration storage.
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores.html b/docs/nconf/stores.html
index b14c515..2185f9e 100644
--- a/docs/nconf/stores.html
+++ b/docs/nconf/stores.html
@@ -1,4 +1,4 @@
-      stores.js           

stores.js

/*
+      stores.js           

stores.js

/*
  * stores.js: Top-level include for all nconf stores
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores/file.html b/docs/nconf/stores/file.html
index a4f5158..065eed8 100644
--- a/docs/nconf/stores/file.html
+++ b/docs/nconf/stores/file.html
@@ -1,4 +1,4 @@
-      file.js           

file.js

/*
+      file.js           

file.js

/*
  * file.js: Simple file storage engine for nconf files
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores/memory.html b/docs/nconf/stores/memory.html
index 9e5bd5e..07e22b3 100644
--- a/docs/nconf/stores/memory.html
+++ b/docs/nconf/stores/memory.html
@@ -1,4 +1,4 @@
-      memory.js           

memory.js

/*
+      memory.js           

memory.js

/*
  * memory.js: Simple memory storage engine for nconf configuration(s)
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores/redis.html b/docs/nconf/stores/redis.html
index b86fdbb..71b66fa 100644
--- a/docs/nconf/stores/redis.html
+++ b/docs/nconf/stores/redis.html
@@ -1,4 +1,4 @@
-      redis.js