class Object

Public Instance Methods

or_ask( *args, &details ) click to toggle source

Tries this object as a first_answer for a HighLine::Question. See that attribute for details.

Warning: This Object will be passed to String() before set.

# File lib/highline/import.rb, line 34
def or_ask( *args, &details )
  ask(*args) do |question|
    question.first_answer = String(self) unless nil?

    details.call(question) unless details.nil?
  end
end