class Fingerprint::Command::Scan

Public Instance Methods

call() click to toggle source
# File lib/fingerprint/command/scan.rb, line 48
def call
        @paths = [Dir.pwd] unless @paths
        
        options = @options.dup
        
        # This configuration ensures that the output is printed to $stdout.
        options[:output] = @parent.output
        options[:recordset] = nil
        
        Scanner.scan_paths(@paths, **options)
end