0
1
7 8 9
# File 'lib/version.rb', line 7 def self.semver "#{MAJOR}.#{MINOR}.#{HOTFIX}" end
11 12 13
# File 'lib/version.rb', line 11 def self.version "#{MAJOR}.#{MINOR}#{(HOTFIX - 1 + 'a'.ord).chr if HOTFIX > 0}" end