Skip to content

Instantly share code, notes, and snippets.

@kotp
Created June 8, 2010 12:51
Show Gist options
  • Save kotp/429961 to your computer and use it in GitHub Desktop.
Save kotp/429961 to your computer and use it in GitHub Desktop.
Prompt module sample
module Prompt
def prompt(prompt = ":> ", chomp = true)
puts self << prompt
chomp ? gets.chomp! : gets
end
end
class String
include Prompt
end
puts "You answered: #{'This is a question'.prompt} " # Returns a string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment