aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2010-11-16 15:11:46 -0800
committerCarl Lerche <me@carllerche.com>2010-11-16 17:19:46 -0800
commitccd2f3ede585fb2f2d830e661dbb8b8538de2dc5 (patch)
tree5f846411d0f95bc455fbd13812201ef6fca3247f /activesupport
parent7e4f9dbd674a5f66c0b0eb6f75783ff31b045dc3 (diff)
downloadrails-ccd2f3ede585fb2f2d830e661dbb8b8538de2dc5.tar.gz
rails-ccd2f3ede585fb2f2d830e661dbb8b8538de2dc5.tar.bz2
rails-ccd2f3ede585fb2f2d830e661dbb8b8538de2dc5.zip
Update the version.rb files to include a PRE part
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/version.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 9e8b3d7888..690fc7f0fc 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -3,8 +3,8 @@ module ActiveSupport
MAJOR = 3
MINOR = 1
TINY = 0
- BUILD = "beta"
+ PRE = "beta"
- STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
+ STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end