Added revision number in Redmine::VERSION (the revision number is read from .svn/entries if it exists).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@824 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
3844e4bca8
commit
2ce184d1de
|
@ -1,10 +1,34 @@
|
|||
require 'rexml/document'
|
||||
|
||||
module Redmine
|
||||
module VERSION #:nodoc:
|
||||
MAJOR = 0
|
||||
MINOR = 5
|
||||
TINY = 1
|
||||
|
||||
STRING= [MAJOR, MINOR, TINY].join('.')
|
||||
def self.revision
|
||||
revision = nil
|
||||
entries_path = "#{RAILS_ROOT}/.svn/entries"
|
||||
if File.readable?(entries_path)
|
||||
begin
|
||||
f = File.open(entries_path, 'r')
|
||||
entries = f.read
|
||||
f.close
|
||||
if entries.match(%r{^\d+})
|
||||
revision = $1.to_i if entries.match(%r{^\d+\s+dir\s+(\d+)\s})
|
||||
else
|
||||
xml = REXML::Document.new(entries)
|
||||
revision = xml.elements['wc-entries'].elements[1].attributes['revision'].to_i
|
||||
end
|
||||
rescue
|
||||
# Could not find the current revision
|
||||
end
|
||||
end
|
||||
revision
|
||||
end
|
||||
|
||||
REVISION = self.revision
|
||||
STRING = [MAJOR, MINOR, TINY, REVISION].compact.join('.')
|
||||
|
||||
def self.to_s; STRING end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue