HashAccess 0.1.0

This library allows access to hash elements by methods.

Install:

gem ins hash-access

Usage example:

require 'hash_access'
include HashAccess

h = Hash.new
h.access_by_methods
h.one.two.three = 'qwe'
print(h.inspect, "\n") # => {"one"=>{"two"=>{"three"=>"qwe"}}}=> nil