summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-21 12:54:51 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-21 12:54:51 +0000
commitbd3458da6ec438c2f468436e848944670f9aa2d7 (patch)
tree3903cd8b9e12a71d778896c77091b5aa7800273e /lib
parent4ccbc65628efd10cb83ddcc884dc0a4aba3e0b92 (diff)
downloadredmine-bd3458da6ec438c2f468436e848944670f9aa2d7.tar.gz
redmine-bd3458da6ec438c2f468436e848944670f9aa2d7.zip
added Redmine::VERSION module
git-svn-id: http://redmine.rubyforge.org/svn/trunk@170 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb
new file mode 100644
index 000000000..4787b7fc2
--- /dev/null
+++ b/lib/redmine.rb
@@ -0,0 +1,11 @@
+module Redmine
+ module VERSION #:nodoc:
+ MAJOR = 0
+ MINOR = 4
+ TINY = 2
+
+ STRING= [MAJOR, MINOR, TINY].join('.')
+
+ def self.to_s; STRING end
+ end
+end \ No newline at end of file