diff lib/redmine/.svn/text-base/version.rb.svn-base @ 442:753f1380d6bc cannam

Merge from branch "redmine-1.2"
author Chris Cannam
date Mon, 06 Jun 2011 14:41:04 +0100
parents eeebe205a056 cbce1fd3b1b7
children 851510f1b535
line wrap: on
line diff
--- a/lib/redmine/.svn/text-base/version.rb.svn-base	Thu Mar 03 15:08:45 2011 +0000
+++ b/lib/redmine/.svn/text-base/version.rb.svn-base	Mon Jun 06 14:41:04 2011 +0100
@@ -3,9 +3,9 @@
 module Redmine
   module VERSION #:nodoc:
     MAJOR = 1
-    MINOR = 1
-    TINY  = 1
-    
+    MINOR = 2
+    TINY  = 0
+
     # Branch values:
     # * official release: nil
     # * stable branch:    stable
@@ -20,24 +20,25 @@
           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