module Delphix::Version

Contains information about this gem’s version

Constants

MAJOR
MINOR
PATCH

Public Class Methods

string() click to toggle source

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

@example

Version.string # => '1.0.1'
# File lib/delphix/version.rb, line 37
def self.string
  [MAJOR, MINOR, PATCH].join('.')
end