module Guard::YardstickVersion

A workaround for declaring `class Yardstick` before `class Yardstick < Guard` in yardstick.rb

Constants

MAJOR

semver.org/

MINOR
PATCH

Public Class Methods

to_s() click to toggle source

Returns a formatted version string

@example

Guard::YardstickVersion.to_s # => '0.0.0.2'

@return [String]

# File lib/guard/yardstick/version.rb, line 18
def self.to_s
  [MAJOR, MINOR, PATCH].join('.')
end