# :nodoc: module Veritrans # hold version number of this library # it use class methods to generate it # # Example: # # Veritrans::Version.to_s class Version class <String - version information def self.to_s [major, minor, patch, pre].compact.join('.') end end end