aboutsummaryrefslogtreecommitdiffstats
path: root/version.rb
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2010-03-01 23:02:55 -0500
committerBryan Helmkamp <bryan@brynary.com>2010-03-02 00:32:41 -0500
commitb1769fe0bd6ea3b7eb7147333754d4b712831b2c (patch)
tree3220daf8cc0ffe9607d045365d33204b69fb1103 /version.rb
parenta0e8eca30bc1f3cf7519bea37456cbfc98b56047 (diff)
downloadrails-b1769fe0bd6ea3b7eb7147333754d4b712831b2c.tar.gz
rails-b1769fe0bd6ea3b7eb7147333754d4b712831b2c.tar.bz2
rails-b1769fe0bd6ea3b7eb7147333754d4b712831b2c.zip
Add `rake update_versions` task at root for quickly updating all components
Diffstat (limited to 'version.rb')
-rw-r--r--version.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/version.rb b/version.rb
new file mode 100644
index 0000000000..1dd8fa0ec7
--- /dev/null
+++ b/version.rb
@@ -0,0 +1,10 @@
+module Rails
+ module VERSION #:nodoc:
+ MAJOR = 3
+ MINOR = 0
+ TINY = 0
+ BUILD = "beta1"
+
+ STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
+ end
+end