module Diff::LCS
def patch_me(patchset)
the sequence this is used on supports #replace, the value of +self+ will be
Attempts to patch +self+ with the provided +patchset+, using #patch!. If
def patch_me(patchset) if respond_to? :replace replace(patch!(patchset)) else patch!(patchset) end end