Module: BenString::Version

Included in:
BenString
Defined in:
lib/ben_string.rb

Constant Summary collapse

MAJOR =

FIXME: Refactor this to be read from a YAML file

1
MINOR =
2
BUGFX =
0
VERSION =
::BenString::Version.version.freeze

Class Method Summary collapse

Class Method Details

.version(sep = '.') ⇒ Object



9
10
11
# File 'lib/ben_string.rb', line 9

def version(sep = '.')
  return [MAJOR, MINOR, BUGFX].join(sep)
end