Module: Inspection

Included in:
Debouncer, Debouncer::Group
Defined in:
lib/debouncer/inspection.rb

Instance Method Summary collapse

Instance Method Details

#inspectObject



2
3
4
5
6
7
8
# File 'lib/debouncer/inspection.rb', line 2

def inspect
  '#<%s:0x%014x%s>' % [
      self.class.name,
      object_id << 1,
      inspect_params.map { |k, v| " #{k}: #{v}" }.join
  ]
end

#inspect_paramsObject



10
11
12
# File 'lib/debouncer/inspection.rb', line 10

def inspect_params
  {}
end