lib/shellplay/screen.rb in shellplay-0.1.2 vs lib/shellplay/screen.rb in shellplay-0.1.3

- old
+ new

@@ -1,12 +1,8 @@ -require "shell2html" - module Shellplay class Screen - include Shell2html - attr_reader :stdin, :stdout, :stderr, :display, :timespent, :displaycommand, :playprompt, :clearscreen, :customprompt def initialize @displaycommand = true @playprompt = true @@ -38,13 +34,9 @@ stdin: @stdin, stdout: @stdout, stderr: @stderr, timespent: @timespent } - end - - def html - to_html(@stdout) end end end