module Diff::LCS

def patch_me(patchset)

replaced. See Diff::LCS#patch. Does no patch direction autodiscovery.
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