Object
# File lib/geminstaller/output_proxy.rb, line 4 4: def default_stream=(stream) 5: raise GemInstaller::GemInstallerError.new("Invalid default stream: #{stream}") unless stream == :stderr or stream == :stdout 6: @default_stream = stream 7: end
TODO: should remove this, make callers explicitly choose.
# File lib/geminstaller/output_proxy.rb, line 24
24: def output(output)
25: if @default_stream == :stdout
26: sysout(output)
27: else
28: syserr(output)
29: end
30: end
# File lib/geminstaller/output_proxy.rb, line 32
32: def silent?
33: @options && @options[:silent]
34: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.