module DSLKit::Deflect

def deflect_stop(from, id)

Stop deflection method calls named _id_ to class _from_.
def deflect_stop(from, id)
  @@sync.synchronize do
    Deflect.deflecting.delete(from, id) or
      raise DeflectError, "#{from}##{id} is not deflected from"
    from.instance_eval { remove_method id }
  end
end