Methods
Constants
ParseError = ::JSON::ParserError
Public Instance methods
decode(json)

Converts a JSON string into a Ruby object.

    # File activesupport/lib/active_support/json/backends/jsongem.rb, line 11
11:         def decode(json)
12:           data = ::JSON.parse(json)
13:           if ActiveSupport.parse_json_times
14:             convert_dates_from(data)
15:           else
16:             data
17:           end
18:         end