module MultiJson
def load(string, options = {})
:symbolize_keys :: If true, will use symbols instead of strings for the keys.
Options
Decode a JSON string into Ruby.
def load(string, options = {}) adapter = current_adapter(options) begin adapter.load(string, options) rescue adapter::ParseError => exception raise ParseError.build(exception, string) end end