Changeset 2463 for tools/gauge
- Timestamp:
- 10/05/05 01:17:33 (3 years ago)
- Files:
-
- tools/gauge/lib/gauge/log_reader.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/gauge/lib/gauge/log_reader.rb
r2462 r2463 10 10 @wait_duration = options[:wait_duration] 11 11 super 12 end 13 14 # Return the current position in the input. If there is no log open, this 15 # will return +nil+. 16 def position 17 @io ? @io.pos : nil 12 18 end 13 19