redipress 0.0.3 → 0.0.4
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/redipress/cli/configurations.rb +4 -0
- data/lib/redipress/variables.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7e665f99ad7e65f8e7a770bb89bac107f18f4e6
|
|
4
|
+
data.tar.gz: 5cc3cd1b8e45d9d2e9695dc2aa830ae712d789b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bab2878d07607c672a8965d10214bd3db1b886dd8e88ed9a4704560ba80b4cc8d992ac265d8329edaca343f898aba93eee0c73f30ba842a4f9821a04c5aab2e5
|
|
7
|
+
data.tar.gz: ad7b794fbcf2a16fe31c29a3b2fa2b9f5371a2d23ee0d7dd73abfc9bc4f199a62302b3a1259124cf48a5bdf31e591c92185045b599e4429e67e4b933734217d5
|
|
@@ -125,6 +125,10 @@ module RediPress
|
|
|
125
125
|
# Print a new line
|
|
126
126
|
new_line
|
|
127
127
|
|
|
128
|
+
# Print the configuration's name
|
|
129
|
+
prompt.ok(configuration.name)
|
|
130
|
+
prompt.ok("------------------------------------------------------------")
|
|
131
|
+
|
|
128
132
|
# Print a table containing the results
|
|
129
133
|
puts TTY::Table.new(rows: result.map { |k, v| [" #{k} ", " #{v} "] }).render(:ascii)
|
|
130
134
|
end
|
data/lib/redipress/variables.rb
CHANGED