1 2 3 4 5 6 7
class Hash def bind(relation) inject({}) do |bound, (key, value)| bound.merge(key.bind(relation) => value.bind(relation)) end end end