module StandupMD::Version
Module that contains all gem version information. Follows semantic versioning. Read: semver.org/
Constants
- MAJOR
-
Major version.
@return [Integer]
- MINOR
-
Minor version.
@return [Integer]
- PATCH
-
Patch version.
@return [Integer]
Public Class Methods
Source
# File lib/standup_md/version.rb, line 30 def self.to_a [MAJOR, MINOR, PATCH] end
Source
# File lib/standup_md/version.rb, line 46 def self.to_h %i[major minor patch].zip(to_a).to_h end