module Replication::Modules::Proofreading

Public Instance Methods

replicate(**options) click to toggle source
Calls superclass method
# File lib/replication/modules/proofreading.rb, line 9
def replicate(**options)
  if valid?
    super
  else
    raise Replication::UnwoundError, 'The origin must be valid!'
  end
end
unwound(**options) click to toggle source
Calls superclass method
# File lib/replication/modules/proofreading.rb, line 5
def unwound(**options)
  super if valid?
end