aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/develop/utils_response.rb
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2015-01-11 22:14:48 -0500
committerRalph Amissah <ralph@amissah.com>2015-01-19 23:46:16 -0500
commit127db38021e15f8ce9e095bea1a4b917c44f0a8a (patch)
treeb3d5fe4ea5ae7c6da89df4e0cd98fbb75b1673f1 /lib/sisu/develop/utils_response.rb
parentbin/sisu + c&d: SiSU_is now methods (instead of hash) (diff)
d: utils_response, ease selection options
Diffstat (limited to 'lib/sisu/develop/utils_response.rb')
-rw-r--r--lib/sisu/develop/utils_response.rb17
1 files changed, 10 insertions, 7 deletions
diff --git a/lib/sisu/develop/utils_response.rb b/lib/sisu/develop/utils_response.rb
index 31092bed..4603646e 100644
--- a/lib/sisu/develop/utils_response.rb
+++ b/lib/sisu/develop/utils_response.rb
@@ -56,17 +56,20 @@
=end
module SiSU_Response
class Response
- def response?(ask) #move to more appropriate directory later
+ def available_selections_
+ %{'yes', 'no', 'quit' or 'exit'; [ynqx]}
+ end
+ def response?(ask)
response='redo'
- print ask + " ['yes', 'no' or 'quit']: "
+ print ask + %{ [#{available_selections_}]: }
response=File.new('/dev/tty').gets.strip
- ans=if response=='yes' then true
- elsif response=='no' then false
- elsif response =~/^quit|exit$/ then exit
- else puts "[please type: 'yes', 'no' or 'quit']"
+ case response
+ when /^(?:y|yes)$/ then true
+ when /^(?:n|no)$/ then false
+ when /^(?:[qx]|quit|exit)$/ then exit
+ else puts %{[please type: #{available_selections_}]}
response?(ask)
end
- ans
end
end
end