Flowdock
puts(exps) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/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 exression 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
Register or log in to add new notes.