Module: CreateRailsApp::UI::Prompter::ReadCharPatch

Defined in:
lib/create_rails_app/ui/prompter.rb

Instance Method Summary collapse

Instance Method Details

#read_charObject

Raises:



18
19
20
21
22
23
# File 'lib/create_rails_app/ui/prompter.rb', line 18

def read_char
  char = super
  raise BackKeyPressed if char == CTRL_B

  char
end