class Hash def to_mash Hashie::Mash.new(self) end end class Hashie::Mash def to_mash self end end class String def to_pathname Pathname(self) end end class Pathname def to_pathname self end end