summaryrefslogtreecommitdiff
path: root/lib/net/hippie/json_mapper.rb
blob: 3aae9e3e6af423711fde97c8faa75fb0695a58b2 (plain)
1
2
3
4
5
6
7
8
9
module Net
  module Hippie
    class JsonMapper
      def map_from(hash)
        JSON.generate(hash)
      end
    end
  end
end