Module: Dolibarr::VERSION

Defined in:
lib/dolibarr/version.rb

Overview

Gem version components.

Constant Summary collapse

MAJOR =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Major version component.

0
MINOR =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Minor version component.

1
TINY =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Patch version component.

0
PRE =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Pre-release tag (e.g. "beta"), or nil for a final release.

nil
STRING =

Returns the dotted version string, e.g. "0.1.0".

Returns:

  • (String)

    the dotted version string, e.g. "0.1.0"

[MAJOR, MINOR, TINY, PRE].compact.join('.')