Module: Augmentor::Version
- Defined in:
- lib/augmentor/version.rb
Overview
Contains information about this gem’s version
Constant Summary collapse
- MAJOR =
0
- MINOR =
0
- PATCH =
1
Class Method Summary collapse
-
.string ⇒ Object
Returns a version string by joining
MAJOR
,MINOR
, andPATCH
with'.'
.
Class Method Details
.string ⇒ Object
Returns a version string by joining MAJOR
, MINOR
, and PATCH
with '.'
Example
Version.string # '1.0.2'
13 14 15 |
# File 'lib/augmentor/version.rb', line 13 def self.string [MAJOR, MINOR, PATCH].join('.') end |