Skip to content

Instantly share code, notes, and snippets.

@banister
Created October 18, 2011 06:06
Show Gist options
  • Save banister/1294724 to your computer and use it in GitHub Desktop.
Save banister/1294724 to your computer and use it in GitHub Desktop.
[1] (pry) main: 0> require './prytime'
=> true
[2] (pry) main: 0> def a
[2] (pry) main: 0* x = :circky
[2] (pry) main: 0* y = :ryanie
[2] (pry) main: 0* b()
[2] (pry) main: 0* end;
[3] (pry) main: 0> def b
[3] (pry) main: 0* z = :fowlie
[3] (pry) main: 0* y = :mon_french_guy
[3] (pry) main: 0* raise "promised land in sticky femininity"
[3] (pry) main: 0* end;
[4] (pry) main: 0> a
Starting Pry session in context of exception
From: (pry) @ line 10 in Object#b:
5: b()
6: end;
7: def b
8: z = :fowlie
9: y = :mon_french_guy
=> 10: raise "promised land in sticky femininity"
11: end;
[1] (pry) main: 0> z
=> :fowlie
[2] (pry) main: 0> y
=> :mon_french_guy
[3] (pry) main: 0> up
From: (pry) @ line 5 in Object#a:
1: require './prytime'
2: def a
3: x = :circky
4: y = :ryanie
=> 5: b()
6: end;
7: def b
8: z = :fowlie
9: y = :mon_french_guy
10: raise "promised land in sticky femininity"
[1] (pry) main: 0> x
=> :circky
[2] (pry) main: 0> y
=> :ryanie
[3] (pry) main: 0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment