Module: Command::VERSION

Defined in:
lib/command/version.rb

Overview

The version of the ‘command’ library

Constant Summary collapse

MAJOR =

The major version number

0
MINOR =

The minor version number

0
TINY =

The tiny version number

1

Class Method Summary collapse

Class Method Details

.to_sObject

The version as a string



24
25
26
# File 'lib/command/version.rb', line 24

def self.to_s
  "#{MAJOR}.#{MINOR||0}.#{TINY||0}"
end