Arborist::

Webservice

module
Extended With
Loggability

A collection of HTTP tools for the Arborist monitoring toolkit.

Constants

REVISION

Version control revision

VERSION

Package version

Public Class Methods

anchor
version_string( include_build: false )

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