Module: FalkorLib::Version
- Defined in:
- lib/falkorlib/version.rb
Overview
Management of the current version of the library
Class Method Summary collapse
-
.major ⇒ Object
Returns the major version ( big release based off of multiple minor releases ).
-
.minor ⇒ Object
Returns the minor version ( small release based off of multiple patches ).
-
.patch ⇒ Object
Returns the patch version ( updates, features and (crucial) bug fixes ).
-
.to_s ⇒ Object
The full version string.
Class Method Details
.major ⇒ Object
Returns the major version ( big release based off of multiple minor releases )
27 28 29 |
# File 'lib/falkorlib/version.rb', line 27 def major MAJOR end |
.minor ⇒ Object
Returns the minor version ( small release based off of multiple patches )
32 33 34 |
# File 'lib/falkorlib/version.rb', line 32 def minor MINOR end |
.patch ⇒ Object
Returns the patch version ( updates, features and (crucial) bug fixes )
37 38 39 |
# File 'lib/falkorlib/version.rb', line 37 def patch PATCH end |
.to_s ⇒ Object
Returns the full version string.
42 43 44 |
# File 'lib/falkorlib/version.rb', line 42 def to_s [MAJOR, MINOR, PATCH].join('.') end |