Flowdock
method

to_json_with_active_support_encoder

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: Object
to_json_with_active_support_encoder(options = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/object/json.rb, line 31
    def to_json_with_active_support_encoder(options = nil) # :nodoc:
      if options.is_a?(::JSON::State)
        # Called from JSON.{generate,dump}, forward it to JSON gem's to_json
        self.to_json_without_active_support_encoder(options)
      else
        # to_json is being invoked directly, use ActiveSupport's encoder
        ActiveSupport::JSON.encode(self, options)
      end
    end
Register or log in to add new notes.