Module: ChefStash::Version
- Defined in:
- lib/chef_stash/version.rb
Overview
Contains information about this gem’s version
Constant Summary collapse
- MAJOR =
0- MINOR =
1- PATCH =
6
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 ‘.’
36 37 38 |
# File 'lib/chef_stash/version.rb', line 36 def self.string [MAJOR, MINOR, PATCH].join('.') end |