jokr 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/viewer.rb +2 -1
- metadata +1 -1
data/lib/viewer.rb
CHANGED
|
@@ -32,7 +32,7 @@ class Viewer
|
|
|
32
32
|
|
|
33
33
|
def display_punch_line(punch_line)
|
|
34
34
|
puts punch_line
|
|
35
|
-
see_another?
|
|
35
|
+
return see_another?
|
|
36
36
|
end
|
|
37
37
|
|
|
38
38
|
def see_another?
|
|
@@ -43,6 +43,7 @@ class Viewer
|
|
|
43
43
|
|
|
44
44
|
def good_bye
|
|
45
45
|
puts "Come back soon !!"
|
|
46
|
+
exit
|
|
46
47
|
end
|
|
47
48
|
|
|
48
49
|
end
|