Module: Phillumeny::Version
- Defined in:
- lib/phillumeny/version.rb
Overview
Nothing to special to see here. Doing my best to follow semantic versioning that conform with Rubygems/bundler dependency determinations
Constant Summary collapse
- MAJOR =
0- MINOR =
2- PATCH =
0- PRERELEASE =
nil
Class Method Summary collapse
-
.to_s ⇒ Object
PRERELEASE = ‘alpha’.freeze.
Class Method Details
.to_s ⇒ Object
PRERELEASE = ‘alpha’.freeze
15 16 17 |
# File 'lib/phillumeny/version.rb', line 15 def self.to_s [MAJOR, MINOR, PATCH, PRERELEASE].compact.join('.') end |