1 2 3 4 5 6 7 8 9 10
module Net module Hippie # Converts a ruby hash into a JSON string class JsonMapper def map_from(hash) JSON.generate(hash) end end end end