Method: Findable::Inspection::ClassMethods#inspect

Defined in:
lib/findable/inspection.rb

#inspectObject



6
7
8
9
10
11
12
13
# File 'lib/findable/inspection.rb', line 6

def inspect
  case
  when self == Findable::Base
    super
  else
    "#{self}(#{column_names.map(&:inspect).join(', ')})"
  end
end