Module: Delphix::Version
- Defined in:
- lib/delphix/version.rb
Overview
Contains information about this gem’s version
Constant Summary collapse
- MAJOR =
0- MINOR =
1- PATCH =
0
Class Method Summary collapse
-
.string ⇒ Object
Returns a version string by joining MAJOR, MINOR, and PATCH with ‘.’.
Class Method Details
.string ⇒ Object
Returns a version string by joining MAJOR, MINOR, and PATCH with ‘.’
37 38 39 |
# File 'lib/delphix/version.rb', line 37 def self.string [MAJOR, MINOR, PATCH].join('.') end |