summaryrefslogtreecommitdiff
path: root/examples/repeat_entry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/repeat_entry.rb')
-rw-r--r--examples/repeat_entry.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/repeat_entry.rb b/examples/repeat_entry.rb
index 5e67f7d..a762961 100644
--- a/examples/repeat_entry.rb
+++ b/examples/repeat_entry.rb
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
+# encoding: utf-8
require "rubygems"
require "highline/import"
@@ -6,7 +7,8 @@ require "highline/import"
puts "Using: #{HighLine.default_instance.terminal.class}"
puts
-tounge_twister = ask("... try saying that three times fast") do |q|
+# tounge_twister
+ask("... try saying that three times fast") do |q|
q.gather = 3
q.verify_match = true
q.responses[:mismatch] = "Nope, those don't match. Try again."
@@ -15,10 +17,10 @@ end
puts "Ok, you did it."
pass = ask("<%= key %>: ") do |q|
- q.echo = '*'
+ q.echo = "*"
q.verify_match = true
- q.gather = {"Enter a password" => '',
- "Please type it again for verification" => ''}
+ q.gather = { "Enter a password" => "",
+ "Please type it again for verification" => "" }
end
puts "Your password is now #{pass}!"