module Findable::Inspection::ClassMethods

Public Instance Methods

inspect() click to toggle source
Calls superclass method
# File lib/findable/inspection.rb, line 6
def inspect
  case
  when self == Findable::Base
    super
  else
    "#{self}(#{column_names.map(&:inspect).join(', ')})"
  end
end