Method: LibGems::UserInteraction#methname
- Defined in:
- lib/libgems/user_interaction.rb
#methname ⇒ Object
:method: terminate_interaction
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/libgems/user_interaction.rb', line 111 [:alert, :alert_error, :alert_warning, :ask, :ask_for_password, :ask_yes_no, :choose_from_list, :say, :terminate_interaction ].each do |methname| class_eval %{ def #{methname}(*args) ui.#{methname}(*args) end }, __FILE__, __LINE__ end |