Flowdock
method

new

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: MockGemUi
new(input = "") public

No documentation

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

Hide source
# File lib/rubygems/mock_gem_ui.rb, line 33
  def initialize(input = "")
    ins = StringIO.new input
    outs = StringIO.new
    errs = StringIO.new

    ins.extend TTY
    outs.extend TTY
    errs.extend TTY

    super ins, outs, errs, true

    @terminated = false
  end
Register or log in to add new notes.