Sha256: dffa58b0daece9d5d68aba36a2c2a3f378178291714261a169b9084b71adebb4

Contents?: true

Size: 228 Bytes

Versions: 11

Compression:

Stored size: 228 Bytes

Contents

binding.pry

class SteppingExample
  def a
    z = 2
    b
  end

  def b
    v2 = 5 if 1 == 2 ; [1,2,3].map { |a| a.to_f }
    c
  end

  def c
    z = 4
    5
  end
end

ex = SteppingExample.new.a
2.times do
  ex += 1
end

ex

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
solidus_backend-1.0.0.pre3 vendor/bundle/gems/pry-byebug-1.3.3/test/examples/stepping.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/pry-byebug-1.3.3/test/examples/stepping.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/pry-byebug-1.3.3/test/examples/stepping.rb
pry-byebug-1.3.3 test/examples/stepping.rb
pry-byebug-1.3.2 test/examples/stepping.rb
pry-byebug-1.3.1 test/examples/stepping.rb
pry-byebug-1.3.0 test/examples/stepping.rb
pry-byebug-1.2.1 test/examples/stepping.rb
pry-byebug-1.2.0 test/examples/stepping.rb
pry-byebug-1.1.2 test/examples/stepping.rb
pry-byebug-1.1.1 test/examples/stepping.rb