Flowdock
method

format_for_inspect

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::AttributeMethods
format_for_inspect(value) private

No documentation

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

Hide source
# File activerecord/lib/active_record/attribute_methods.rb, line 402
      def format_for_inspect(value)
        if value.is_a?(String) && value.length > 50
          "#{value[0, 50]}...".inspect
        elsif value.is_a?(Date) || value.is_a?(Time)
          %("#{value.to_s(:db)}")
        else
          value.inspect
        end
      end
Register or log in to add new notes.