Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • irb/xmp.rb

XMP::StringInputMethod

Attributes

encoding[R]

Public Class Methods

new() click to toggle source
 
               # File irb/xmp.rb, line 55
def initialize
  super
  @exps = []
end
            

Public Instance Methods

eof?() click to toggle source
 
               # File irb/xmp.rb, line 60
def eof?
  @exps.empty?
end
            
gets() click to toggle source
 
               # File irb/xmp.rb, line 64
def gets
  while l = @exps.shift
    next if /^\s+$/ =~ l
    l.concat "\n"
    print @prompt, l
    break
  end
  l
end
            
puts(exps) click to toggle source
 
               # File irb/xmp.rb, line 74
def puts(exps)
  if @encoding and exps.encoding != @encoding
    enc = Encoding.compatible?(@exps.join("\n"), exps)
    if enc.nil?
      raise Encoding::CompatibilityError, "Encoding in which the passed expression is encoded is not compatible to the preceding's one"
    else
      @encoding = enc
    end
  else
    @encoding = exps.encoding
  end
  @exps.concat exps.split(/\n/)
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.