git_game_show 0.1.6 → 0.1.7
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.
- checksums.yaml +4 -4
- data/lib/git_game_show/updater.rb +8 -8
- data/lib/git_game_show/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0eaec4e8df244f6bce785020f5e51e64c3ce2a4a4a0f34e24b35067d00ff46b
|
4
|
+
data.tar.gz: 1370dec1ae250bce28fc021353353a1a3fcf31b19e376128065377a5e7d0b280
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b32957cf357b2cd3d1d04c48fc285307cc948e7fcb150ec364a1e7ec2d41a552e894207935b8912729ffa6d763a42006508b741afe65af8dab0110227cd3c6e
|
7
|
+
data.tar.gz: 1993c667e5c49e90c4c36a7f2888e61573bfda38113be4fa41dd91d095a339023bfd242d5fcbf87c07fae4f3da563815862d103e7b5cfce3665acccf85c15e13
|
@@ -61,14 +61,14 @@ module GitGameShow
|
|
61
61
|
# Clear the terminal for better visibility
|
62
62
|
puts "\n\n"
|
63
63
|
|
64
|
-
puts "
|
65
|
-
puts "
|
66
|
-
puts "
|
67
|
-
puts "│
|
68
|
-
puts "│
|
69
|
-
puts "│
|
70
|
-
puts "│
|
71
|
-
puts "
|
64
|
+
puts ("╭" + "─" * 60 + "╮").colorize(:light_blue)
|
65
|
+
puts "│#{"Update Available for Git Game Show!".center(60)}│".colorize(:light_blue)
|
66
|
+
puts ("├" + "─" * 60 + "┤").colorize(:light_blue)
|
67
|
+
puts "│".colorize(:light_blue) + " " * 60 + "│".colorize(:light_blue)
|
68
|
+
puts "│".colorize(:light_blue) + "Current version: #{current_version}".center(60) + "│".colorize(:light_blue)
|
69
|
+
puts "│".colorize(:light_blue) + "Latest version: #{latest_version}".center(60) + "│".colorize(:light_blue)
|
70
|
+
puts "│".colorize(:light_blue) + " " * 60 + "│".colorize(:light_blue)
|
71
|
+
puts ("╰" + "─" * 60 + "╯").colorize(:light_blue)
|
72
72
|
puts "\n"
|
73
73
|
|
74
74
|
update_now = prompt.yes?("Would you like to update now?")
|