class Codelog::Output::Log
Public Class Methods
print(content)
click to toggle source
# File lib/codelog/output/log.rb, line 4 def self.print(content) new.print(content) end
Public Instance Methods
print(content)
click to toggle source
# File lib/codelog/output/log.rb, line 8 def print(content) IO.popen('less', 'w') { |output| output.puts content } end