Skip to content

Commit 56c9f44

Browse files
committed
improve question code
1 parent ed30ac6 commit 56c9f44

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

template.rb

+10-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,21 @@
1111
unless edition
1212
# === Fetch the Avo edition ===
1313
question = <<~QUESTION
14-
What version of Avo would you like to install?
14+
15+
16+
Which version of Avo would you like to install?
1517
1. Avo Community (default)
1618
2. Avo Pro
1719
3. Avo Advanced
20+
21+
More information about version features here:
22+
https://avohq.io/pricing
23+
24+
1825
QUESTION
26+
puts question
1927

20-
answer = ask(question, default: "1", limited_to: ["1", "2", "3"])
28+
answer = ask("Which version of Avo would you like to install?", default: "1", limited_to: ["1", "2", "3"])
2129

2230
edition = case answer
2331
when "1"

0 commit comments

Comments
 (0)