class RR::ScanRunner
This class implements the functionality of the rrscan.rb command.
Public Instance Methods
create_processor(left_table, right_table)
click to toggle source
Creates the correct scan class. Parameters as defined under RR::BaseRunner#create_processor
# File lib/rubyrep/scan_runner.rb, line 19 def create_processor(left_table, right_table) TableScanHelper.scan_class(session).new session, left_table, right_table end
summary_description()
click to toggle source
Returns summary description string for the scan command.
# File lib/rubyrep/scan_runner.rb, line 13 def summary_description "Scans for differences of the specified tables between both databases." end