matches YAML-formatted dates
Listed in order of preference.
# File lib/active_support/json/decoding.rb, line 16 def backend set_default_backend unless defined?(@backend) @backend end
# File lib/active_support/json/decoding.rb, line 21 def backend=(name) if name.is_a?(Module) @backend = name else require "active_support/json/backends/#{name.to_s.downcase}" @backend = ActiveSupport::JSON::Backends::const_get(name) end @parse_error = @backend::ParseError end
Dumps object in JSON (JavaScript Object Notation). See www.json.org for more info.
# File lib/active_support/json/encoding.rb, line 29 def self.encode(value, options = nil) Encoding::Encoder.new(options).encode(value) end
Generated with the Darkfish Rdoc Generator 2.