lib/hash_easy.rb in hash_easy-0.0.2 vs lib/hash_easy.rb in hash_easy-0.0.3

- old
+ new

@@ -1,5 +1,11 @@ require "hash_easy/version" require "hash_easy/bottomless_hash" +class Hash + def bottomless + HashEasy::BottomlessHash.from_hash(self) + end +end + module HashEasy end