Skip to content
Snippets Groups Projects
version.rb 176 B
Newer Older
module Redmine
  module VERSION #:nodoc:
    MAJOR = 0
    MINOR = 5
    TINY  = 1

    STRING= [MAJOR, MINOR, TINY].join('.')
    
    def self.to_s; STRING end    
  end
end