Module: PryStackExplorer::FrameManagerHack

Defined in:
lib/pryx/pry-stack_explorer_hack.rb

Instance Method Summary collapse

Instance Method Details

#initialize(bindings, _pry) ⇒ Object



3
4
5
6
7
8
# File 'lib/pryx/pry-stack_explorer_hack.rb', line 3

def initialize(bindings, _pry)
  super
  self.bindings = bindings.reject do |b|
    b.source_location[0].match? %r{/pryx/pry_hack.rb}
  end
end