mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-31 10:25:55 +01:00 
			
		
		
		
	git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9864 e93f8b46-1217-0410-a6f0-8f06a7374b81
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rexml/document'
 | |
| 
 | |
| module Redmine
 | |
|   module VERSION #:nodoc:
 | |
|     MAJOR = 2
 | |
|     MINOR = 0
 | |
|     TINY  = 3
 | |
| 
 | |
|     # Branch values:
 | |
|     # * official release: nil
 | |
|     # * stable branch:    stable
 | |
|     # * trunk:            devel
 | |
|     BRANCH = 'devel'
 | |
| 
 | |
|     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
 | |
|     ARRAY    = [MAJOR, MINOR, TINY, BRANCH, REVISION].compact
 | |
|     STRING   = ARRAY.join('.')
 | |
| 
 | |
|     def self.to_a; ARRAY  end
 | |
|     def self.to_s; STRING end
 | |
|   end
 | |
| end
 |