go_easy_btn 0.0.5 → 0.0.6
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/go_easy_btn.rb +2 -5
- metadata +2 -2
data/lib/go_easy_btn.rb
CHANGED
@@ -23,8 +23,7 @@ class GoEasyButton
|
|
23
23
|
run_command if data.strip == BTN_COMMAND
|
24
24
|
end
|
25
25
|
rescue Interrupt, EOFError
|
26
|
-
puts "\rgoing bye bye now"
|
27
|
-
puts stats(true)
|
26
|
+
puts "\rgoing bye bye now", stats(true)
|
28
27
|
end
|
29
28
|
end
|
30
29
|
end
|
@@ -47,9 +46,7 @@ class GoEasyButton
|
|
47
46
|
end
|
48
47
|
|
49
48
|
Alerter.alert msg
|
50
|
-
puts msg
|
51
|
-
puts border
|
52
|
-
puts stats
|
49
|
+
puts msg, border, stats
|
53
50
|
end
|
54
51
|
|
55
52
|
private
|