Module: Delphix::Version

Defined in:
lib/delphix/version.rb

Overview

Contains information about this gem’s version

Constant Summary collapse

MAJOR =
0
MINOR =
3
PATCH =
2

Class Method Summary collapse

Class Method Details

.stringObject

Returns a version string by joining MAJOR, MINOR, and PATCH with ‘.’

Examples:

Version.string # => '1.0.1'


37
38
39
# File 'lib/delphix/version.rb', line 37

def self.string
  [MAJOR, MINOR, PATCH].join('.')
end