Commit 39c19958 authored by Eric Davis's avatar Eric Davis

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

parent 04361864
...@@ -7,14 +7,6 @@ module Redmine ...@@ -7,14 +7,6 @@ module Redmine
PATCH = 0 PATCH = 0
TINY = PATCH # Redmine compat 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 def self.revision
revision = nil revision = nil
entries_path = "#{RAILS_ROOT}/.svn/entries" entries_path = "#{RAILS_ROOT}/.svn/entries"
...@@ -37,7 +29,7 @@ module Redmine ...@@ -37,7 +29,7 @@ module Redmine
end end
REVISION = self.revision REVISION = self.revision
ARRAY = [MAJOR, MINOR, PATCH, BRANCH, REVISION].compact ARRAY = [MAJOR, MINOR, PATCH, REVISION].compact
STRING = ARRAY.join('.') STRING = ARRAY.join('.')
def self.to_a; ARRAY end def self.to_a; ARRAY end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment