class Pdi::Spoon::Parser

This class knows how to parse feedback from Pentaho and make sense of it.

Constants

NEW_LINE

Public Instance Methods

version(string) click to toggle source
# File lib/pdi/spoon/parser.rb, line 16
def version(string)
  string.to_s
        .chomp
        .split(NEW_LINE)
        .last
        .to_s
end