change tabs to spaces in lib/redmine/version.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5549 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
20c6a278ad
commit
d1eb1fb07d
|
@ -5,7 +5,7 @@ module Redmine
|
||||||
MAJOR = 1
|
MAJOR = 1
|
||||||
MINOR = 1
|
MINOR = 1
|
||||||
TINY = 2
|
TINY = 2
|
||||||
|
|
||||||
# Branch values:
|
# Branch values:
|
||||||
# * official release: nil
|
# * official release: nil
|
||||||
# * stable branch: stable
|
# * stable branch: stable
|
||||||
|
@ -20,24 +20,25 @@ module Redmine
|
||||||
f = File.open(entries_path, 'r')
|
f = File.open(entries_path, 'r')
|
||||||
entries = f.read
|
entries = f.read
|
||||||
f.close
|
f.close
|
||||||
if entries.match(%r{^\d+})
|
if entries.match(%r{^\d+})
|
||||||
revision = $1.to_i if entries.match(%r{^\d+\s+dir\s+(\d+)\s})
|
revision = $1.to_i if entries.match(%r{^\d+\s+dir\s+(\d+)\s})
|
||||||
else
|
else
|
||||||
xml = REXML::Document.new(entries)
|
xml = REXML::Document.new(entries)
|
||||||
revision = xml.elements['wc-entries'].elements[1].attributes['revision'].to_i
|
revision =
|
||||||
end
|
xml.elements['wc-entries'].elements[1].attributes['revision'].to_i
|
||||||
rescue
|
end
|
||||||
# Could not find the current revision
|
rescue
|
||||||
end
|
# Could not find the current revision
|
||||||
end
|
end
|
||||||
revision
|
end
|
||||||
|
revision
|
||||||
end
|
end
|
||||||
|
|
||||||
REVISION = self.revision
|
REVISION = self.revision
|
||||||
ARRAY = [MAJOR, MINOR, TINY, BRANCH, REVISION].compact
|
ARRAY = [MAJOR, MINOR, TINY, BRANCH, REVISION].compact
|
||||||
STRING = ARRAY.join('.')
|
STRING = ARRAY.join('.')
|
||||||
|
|
||||||
def self.to_a; ARRAY end
|
def self.to_a; ARRAY end
|
||||||
def self.to_s; STRING end
|
def self.to_s; STRING end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue