module Planter::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
to_a()
click to toggle source
to_h()
click to toggle source
to_s()
click to toggle source
Version
as MAJOR.MINOR.PATCH
@return [String]
# File lib/planter/version.rb, line 38 def self.to_s to_a.join('.') end