class Net::SCP::Version

def to_s

version components are joined by the '.' character. E.g., 2.0.0.
Converts this version object to a string, where each of the three
def to_s
  @to_s ||= [@major, @minor, @tiny, @pre].compact.join(".")
end