class Psych::ScalarScanner

def parse_int string

Parse and return an int from +string+
##
def parse_int string
  Integer(string.delete(',_'))
end