pry-stack_explorer 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/tester.rb DELETED
@@ -1,27 +0,0 @@
1
- def a
2
- x = 20
3
- b
4
- end
5
-
6
- def b
7
- x = 30
8
- c
9
- end
10
-
11
- def c
12
- u = 50
13
- binding.pry
14
- puts "hi"
15
- puts "bye"
16
- v = 20
17
- puts v
18
- k
19
- end
20
-
21
- def k
22
- puts "lovely girl"
23
- james = "hello"
24
- puts james
25
- end
26
-
27
- a