README.md in fancy_gets-0.1.0 vs README.md in fancy_gets-0.1.1

- old
+ new

@@ -1,11 +1,11 @@ # FancyGets This gem exists to banish crusty UX that our users endure at the command line. For far too long we've been stuck with just gets and getc. When prompting the -user with a list of choices, wouldn't it be nice to have the feel of a <select> +user with a list of choices, wouldn't it be nice to have the feel of a < select > in HTML? Or to auto-suggest options as they type? Or perhaps offer a password entry with asterisks instead of just sitting silent, which confuses many users? Read on. @@ -61,10 +61,10 @@ Another cool thing this allows is to change the color of selected items. You may want to check out Michał Kalbarczyk's [colorize gem](https://github.com/fazibear/colorize "Michał loves all things \033") for more info. ```ruby -another_toy = gets_list(toys, false, nil, "==>", "<== PARTY TIME!", "Use arrows to pick something awesome.") +another_toy = gets_list(toys, false, nil, "\033[1;31m", "\033[0m <==", "Use arrows to pick something awesome.") puts "\nSo much to love about #{another_toy}." ``` Easy to have multiple choices, and bring back an array. In this case it already has chosen the kite and water gun.