Module: Racker::Version

Defined in:
lib/racker/version.rb

Overview

This defines the version of the gem

Constant Summary collapse

MAJOR =
0
MINOR =
1
PATCH =
3
BUILD =
nil
STRING =
[MAJOR, MINOR, PATCH, BUILD].compact.join('.')
'Racker v%s'

Class Method Summary collapse

Class Method Details

.versionObject



17
18
19
# File 'lib/racker/version.rb', line 17

def version
  sprintf(BANNER, STRING)
end