README.md in hash_ish-0.1.0 vs README.md in hash_ish-0.2.0

- old
+ new

@@ -12,22 +12,22 @@ gem install hash_ish ``` ## Usage -1. Insert hash - ``` -hash = { a { b: "c"} } +require 'hash_ish' + +# insert hash into new hash_ish +hash = { a { b: "c" } } hash_ish = HashIsh.new(hash) -``` -2. Access hash keys with method calls - -``` +# access hash keys with method calls hash_ish.a.b # returns 'c' +``` + ## Known issues - currently only supports hash keys that would be valid method names ``` @@ -39,6 +39,5 @@ ``` ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). -