class Morpheus::Terminal::Blackhole

todo: this can be combined with Cli::Shell

Public Class Methods

new(*args) click to toggle source
# File lib/morpheus/terminal.rb, line 47
def initialize(*args)
  # we shouldn't actually need a File tho.. but Readline wants one
  # File.open(Morpheus::Cli.windows? ? 'NUL:' : '/dev/null', 'w')
end

Public Instance Methods

'<<'(*mgs)
Alias for: accrete_data
accrete_data(*mgs) click to toggle source
# File lib/morpheus/terminal.rb, line 52
def accrete_data(*mgs)
  # Singularity.push(*msgs)
  return nil
end
Also aliased as: print, puts, '<<', write, write
print(*mgs)
Alias for: accrete_data
puts(*mgs)
Alias for: accrete_data
write(*mgs)
Alias for: accrete_data