aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/version.rb
blob: 66891692564b2fc4369fb1d0daee823192764a9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Rails
  module VERSION #:nodoc:
    MAJOR = 3
    MINOR = 2
    TINY  = 21
    PRE   = nil

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
  end
end