Module: Gemmy::Patches::ObjectPatch::InstanceMethods::Prompt

Defined in:
lib/gemmy/patches/object_patch.rb

Overview

Prints a string then gets input

Instance Method Summary collapse

Instance Method Details

#_prompt(txt) ⇒ Object



272
273
274
275
# File 'lib/gemmy/patches/object_patch.rb', line 272

def _prompt(txt)
  puts txt
  gets.chomp
end