Module Command::VERSION
In: lib/command/version.rb

The version of the ‘command’ library

Methods

to_s  

Constants

MAJOR = 0   The major version number
MINOR = 0   The minor version number
TINY = 1   The tiny version number

Public Class methods

The version as a string

[Source]

    # File lib/command/version.rb, line 24
24:     def self.to_s
25:       "#{MAJOR}.#{MINOR||0}.#{TINY||0}"
26:     end

[Validate]