Class: RailsAiBridge::Doctor::Checkers::BridgeFreshnessChecker::ScanResult
- Inherits:
-
Struct
- Object
- Struct
- RailsAiBridge::Doctor::Checkers::BridgeFreshnessChecker::ScanResult
- Defined in:
- lib/rails_ai_bridge/doctor/checkers/bridge_freshness_checker.rb
Overview
Accumulator for file scanning results.
Instance Attribute Summary collapse
-
#found_files ⇒ Object
Returns the value of attribute found_files.
-
#stale_files ⇒ Object
Returns the value of attribute stale_files.
Instance Method Summary collapse
-
#initialize ⇒ ScanResult
constructor
A new instance of ScanResult.
Constructor Details
#initialize ⇒ ScanResult
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_files ⇒ Object
Returns the value of attribute 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_files ⇒ Object
Returns the value of attribute stale_files
9 10 11 |
# File 'lib/rails_ai_bridge/doctor/checkers/bridge_freshness_checker.rb', line 9 def stale_files @stale_files end |