Sha256: f574033db5172912d18be338cd16daf880e157b59e922461aa270a69faefbcbf

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

#!/usr/local/bin/ruby -w

# import.rb
#
#  Created by James Edward Gray II on 2005-04-26.
#  Copyright 2005 Gray Productions. All rights reserved.
#
#  This is Free Software.  See LICENSE and COPYING for details.

require "highline"
require "forwardable"

$terminal = HighLine.new

#
# <tt>require "highline/import"</tt> adds shorcut methods to Kernel, making
# agree(), ask(), choose() and say() globally available.  This is handy for
# quick and dirty input and output.  These methods use the HighLine object in
# the global variable <tt>$terminal</tt>, which is initialized to used
# <tt>$stdin</tt> and <tt>$stdout</tt> (you are free to change this).
# Otherwise, these methods areidentical to their HighLine counterparts, see that
# class for detailed explinations.
#
module Kernel
  extend Forwardable
  def_delegators :$terminal, :agree, :ask, :choose, :say
end

class Object
  # 
  # 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.
  # 
  def or_ask( *args, &details )
    ask(*args) do |question|
      question.first_answer = String(self) unless nil?
      
      details.call(question) unless details.nil?
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
highline-1.2.2 lib/highline/import.rb
highline-1.2.3 lib/highline/import.rb
highline-1.2.1 lib/highline/import.rb
highline-1.2.4 lib/highline/import.rb
highline-1.2.5 lib/highline/import.rb