Class: RailsAiBridge::Doctor::Checkers::BridgeFreshnessChecker::ScanResult

Inherits:
Struct
  • Object
show all
Defined in:
lib/rails_ai_bridge/doctor/checkers/bridge_freshness_checker.rb

Overview

Accumulator for file scanning results.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeScanResult

Returns a new instance of ScanResult.



10
11
12
# File 'lib/rails_ai_bridge/doctor/checkers/bridge_freshness_checker.rb', line 10

def initialize
  super([], [])
end

Instance Attribute Details

#found_filesObject

Returns the value of attribute found_files

Returns:

  • (Object)

    the current value of found_files



9
10
11
# File 'lib/rails_ai_bridge/doctor/checkers/bridge_freshness_checker.rb', line 9

def found_files
  @found_files
end

#stale_filesObject

Returns the value of attribute stale_files

Returns:

  • (Object)

    the current value of stale_files



9
10
11
# File 'lib/rails_ai_bridge/doctor/checkers/bridge_freshness_checker.rb', line 9

def stale_files
  @stale_files
end