class CSV::Parser::Scanner

Parent:
StringScanner

Public Class Methods

new(*args) Show source
# File lib/csv/parser.rb, line 21
def initialize(*args)
  super
  @keeps = []
end
Calls superclass method StringScanner::new

Public Instance Methods

each_line(row_separator) { |line| ... } Show source
# File lib/csv/parser.rb, line 26
def each_line(row_separator)
  position = pos
  rest.each_line(row_separator) do |line|
    position += line.bytesize
    self.pos = position
    yield(line)
  end
end
keep_back() Show source
# File lib/csv/parser.rb, line 44
def keep_back
  self.pos = @keeps.pop
end
keep_drop() Show source
# File lib/csv/parser.rb, line 48
def keep_drop
  @keeps.pop
end
keep_end() Show source
# File lib/csv/parser.rb, line 39
def keep_end
  start = @keeps.pop
  string[start, pos - start]
end
keep_start() Show source
# File lib/csv/parser.rb, line 35
def keep_start
  @keeps.push(pos)
end

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.