Class: SkillBench::Execution::ContextHydrator::ContextFile
- Inherits:
-
Struct
- Object
- Struct
- SkillBench::Execution::ContextHydrator::ContextFile
- Defined in:
- lib/skill_bench/execution/context_hydrator.rb
Overview
Immutable record pairing a context file's path with the content and byte
size captured during a single filesystem pass, so the total-size check and
the XML build can reuse them without a second stat or read.
Instance Attribute Summary collapse
-
#bytesize ⇒ Object
Returns the value of attribute bytesize.
-
#content ⇒ Object
Returns the value of attribute content.
-
#path ⇒ Object
Returns the value of attribute path.
Instance Attribute Details
#bytesize ⇒ Object
Returns the value of attribute bytesize
18 19 20 |
# File 'lib/skill_bench/execution/context_hydrator.rb', line 18 def bytesize @bytesize end |
#content ⇒ Object
Returns the value of attribute content
18 19 20 |
# File 'lib/skill_bench/execution/context_hydrator.rb', line 18 def content @content end |
#path ⇒ Object
Returns the value of attribute path
18 19 20 |
# File 'lib/skill_bench/execution/context_hydrator.rb', line 18 def path @path end |