Skip to content

Commit

Permalink
Version bump to 0.0.3 and updated documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickTulskie committed Nov 12, 2012
1 parent dd8880c commit 690f9b9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.0.3 (November 12, 2012)

Features:

- Load a directory of configs instead of having to load all of them manually.

Documentation:

- Added example for loading a directory.

## 0.0.2 (September 12, 2012)

Features:
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ For most applications, you'll want to load Configster before you start loading t

You can also pass a raw hash of stuff into `load!` as long as it's in the format of `"ClassName" => { 'variable' => 'whatever' }`

Configster.load!('MyAwesomeClass' => { :something => 'cool' })

Or load an entire directory:

Configster.load!(File.join(Rails.root, 'config', 'configster'))

Then, just include Configster in any classes you want:

class KonfiguredKlass
Expand Down
2 changes: 1 addition & 1 deletion lib/configster/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Configster
VERSION = "0.0.2"
VERSION = "0.0.3"
end

0 comments on commit 690f9b9

Please sign in to comment.