Class Object
In: lib/highline/import.rb
Parent: Object

Methods

or_ask  

Public Instance methods

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.

[Source]

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

[Validate]