Class: CSV

Inherits:
Object
  • Object
show all
Defined in:
lib/table_utils/progress.rb

Instance Method Summary collapse

Instance Method Details

#countObject



46
47
48
49
50
51
# File 'lib/table_utils/progress.rb', line 46

def count
  oldpos = tell if respond_to?(:tell)
  super
ensure
  seek oldpos if respond_to?(:seek)
end