diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-25 23:21:06 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-25 23:21:06 +0000 |
commit | d1eb1fb07dd3d5fb7c42c38177c64992191bdd7e (patch) | |
tree | 9edabf4ec5823f85000b1ca6129c2ed62c304f1c /lib/redmine/version.rb | |
parent | 20c6a278ad4c10ebb64be151874c4405564e536f (diff) | |
download | redmine-d1eb1fb07dd3d5fb7c42c38177c64992191bdd7e.tar.gz redmine-d1eb1fb07dd3d5fb7c42c38177c64992191bdd7e.zip |
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
Diffstat (limited to 'lib/redmine/version.rb')
-rw-r--r-- | lib/redmine/version.rb | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/lib/redmine/version.rb b/lib/redmine/version.rb index 30debe4e0..38e524942 100644 --- a/lib/redmine/version.rb +++ b/lib/redmine/version.rb @@ -5,7 +5,7 @@ module Redmine MAJOR = 1 MINOR = 1 TINY = 2 - + # Branch values: # * official release: nil # * stable branch: stable @@ -20,24 +20,25 @@ module Redmine 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 + 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 - ARRAY = [MAJOR, MINOR, TINY, BRANCH, REVISION].compact - STRING = ARRAY.join('.') + ARRAY = [MAJOR, MINOR, TINY, BRANCH, REVISION].compact + STRING = ARRAY.join('.') - def self.to_a; ARRAY end + def self.to_a; ARRAY end def self.to_s; STRING end end end |