Module: AttrRedactor::Version
- Defined in:
- lib/attr_redactor/version.rb
Overview
Contains information about this gem’s version
Constant Summary collapse
- MAJOR =
0- MINOR =
3- PATCH =
0
Class Method Summary collapse
-
.string ⇒ Object
Returns a version string by joining
MAJOR,MINOR, andPATCHwith'.'.
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/attr_redactor/version.rb', line 13 def self.string [MAJOR, MINOR, PATCH].join('.') end |