class Diff::LCS::HTMLDiff
def run
def run verify_options if @options[:expand_tabs] > 0 && self.class.can_expand_tabs formatter = Text::Format.new formatter.tabstop = @options[:expand_tabs] @left = left.map { |line| formatter.expand(line.chomp) } @right = right.map { |line| formatter.expand(line.chomp) } end @left.map! { |line| CGI.escapeHTML(line.chomp) } @right.map! { |line| CGI.escapeHTML(line.chomp) } @options[:output] << <<-OUTPUT tml> <head> <title>#{@options[:title]}</title> <style type="text/css"> #{@options[:css]} </style> </head> <body> <h1>#{@options[:title]}</h1> <p>Legend: <span class="only_a">Only in Old</span> <span class="only_b">Only in New</span></p> <div class="diff"> OUTPUT callbacks = Callbacks.new(@options[:output]) Diff::LCS.traverse_sequences(@left, @right, callbacks) @options[:output] << <<-OUTPUT </div> </body> html> OUTPUT end