Skip to Content Skip to Search
Methods
F

Attributes

[W] filter_attributes

Specifies columns which shouldn't be exposed while calling #inspect.

Instance Public methods

filter_attributes()

Returns columns which shouldn't be exposed while calling #inspect.

# File activerecord/lib/active_record/core.rb, line 384
def filter_attributes
  if defined?(@filter_attributes)
    @filter_attributes
  else
    superclass.filter_attributes
  end
end