Sha256: a1821a5bbf56021099caa64184e876ad266ed1b1979ccbedffddc67a7b1a2a00
Contents?: true
Size: 469 Bytes
Versions: 15
Compression:
Stored size: 469 Bytes
Contents
module Uricp::Strategy class Sweeper include Uricp::Strategy::Common def appropriate? if options['sweep'] && sequence_complete? return proposal end debug "#{self.class.name}: not appropriate" false end def command "mv #{options['sweep'].first} #{options['sweep'].last};" end def proposal @proposed_options = options.dup @proposed_options.delete('sweep') self end end end
Version data entries
15 entries across 15 versions & 1 rubygems