module ActiveEntity::Core::ClassMethods

Attributes

filter_attributes[W]

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

Public Instance Methods

filter_attributes() click to toggle source

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

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