Update the version.rb files to include a PRE part

This commit is contained in:
Carl Lerche
2010-11-16 15:11:46 -08:00
parent 7e4f9dbd67
commit ccd2f3ede5
8 changed files with 16 additions and 16 deletions

View File

@@ -3,8 +3,8 @@ module ActiveModel
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