Class: PmdTester::WordDiffer

Inherits:
Object
  • Object
show all
Defined in:
lib/pmdtester/word_differ.rb

Overview

Utility to diff two strings by word and format the result as HTML

Class Method Summary collapse

Class Method Details

.diff_words(old_str, new_str) ⇒ Object



6
7
8
9
# File 'lib/pmdtester/word_differ.rb', line 6

def self.diff_words(old_str, new_str)
  diff = Diff.new(old_str, new_str)
  diff.diff
end