[#308] Remove Redmine::VERSION::BRANCH

This commit is contained in:
Eric Davis 2011-03-27 10:48:20 -07:00
parent 04361864a7
commit 39c19958d7
1 changed files with 1 additions and 9 deletions

View File

@ -7,14 +7,6 @@ module Redmine
PATCH = 0
TINY = PATCH # Redmine compat
# Branches:
# * stable - released version
# * master - stable development
# * unstable - future development
#
# Source: https://www.chiliproject.org/projects/chiliproject/wiki/ChiliProject_Repository
BRANCH = 'master'
def self.revision
revision = nil
entries_path = "#{RAILS_ROOT}/.svn/entries"
@ -37,7 +29,7 @@ module Redmine
end
REVISION = self.revision
ARRAY = [MAJOR, MINOR, PATCH, BRANCH, REVISION].compact
ARRAY = [MAJOR, MINOR, PATCH, REVISION].compact
STRING = ARRAY.join('.')
def self.to_a; ARRAY end