Nenhuma Descrição http://j1x-huginn.herokuapp.com

json_with_indifferent_access.rb 187B

    class JSONWithIndifferentAccess def self.load(json) ActiveSupport::HashWithIndifferentAccess.new(JSON.parse(json || '{}')) end def self.dump(hash) JSON.dump(hash) end end