Method: Xcode::Project::Config::IOScanner#tokenize

Defined in:
lib/xcode/project/config/io_scanner.rb

#tokenizeObject



14
15
16
17
18
19
20
21
22
23
# File 'lib/xcode/project/config/io_scanner.rb', line 14

def tokenize
  @term = ''

  while c = @io.getc
    return c if TOKENS.include? c
    term << c
  end

  return nil
end