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