A collection of HTTP tools for the Arborist monitoring toolkit.
Version control revision
Package version
Return the name of the library with the version, and optionally the build
ID if include_build
is true.
# File lib/arborist/webservice.rb, line 24
def self::version_string( include_build: false )
str = "%p v%s" % [ self, VERSION ]
str << ' (' << REVISION.strip << ')' if include_build
return str
end