Skip to content

Commit

Permalink
preparing v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiii committed Nov 4, 2011
1 parent 9853c1c commit 25f6e4a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
== 2.0.0 (2011-11-04)

* Replaced the automatic loading of a user-local ambience.yml with an option to
load an app-specific config by providing a path to the additonal config via
an AMBIENCE_CONFIG environment variable.

== 1.0.0 (2011-06-15)

* Cleaned up the project's setup.
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ Ambience loads your config and converts it into a Hash:
{ "auth" => { "address" => "http://example.com", "username" => "ferris", "password" => "test" } }
```

Afterwards it tries to merge these settings with local ones specified in an `Ambience.local_config` file.
If you're using JRuby, Ambience will merge all JVM properties with the config Hash:
Afterwards it tries to merge these settings with app-specific setting stored in a file which path is
provided through the AMBIENCE_CONFIG environment variable. Also, if you're using JRuby, Ambience will
merge all JVM properties with the config Hash:

``` ruby
auth.address = "http://live.example.com"
Expand Down
2 changes: 1 addition & 1 deletion lib/ambience/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Ambience

VERSION = "1.0.0"
VERSION = "2.0.0"

end

0 comments on commit 25f6e4a

Please sign in to comment.