Flowdock
method

to_json

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Object
to_json(*a) public

No documentation

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

Hide source
# File ext/json/lib/json/add/rails.rb, line 19
  def to_json(*a)
    result = {
      JSON.create_id => self.class.name
    }
    instance_variables.inject(result) do |r, name|
      r[name[1..-1]] = instance_variable_get name
      r
    end
    result.to_json(*a)
  end
Register or log in to add new notes.