public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
commit  4364c361b599f99bc2345ce4eb2d145b07ed8a0f
tree    1fb87b58438790cda9308ee3cba05427b577b334
parent  e89093aeb4b1f544cb54caf54a0374075250cc59
rails / railties / lib / rails / version.rb
100644 10 lines (8 sloc) 0.136 kb
1
2
3
4
5
6
7
8
9
10
module Rails
  module VERSION #:nodoc:
    MAJOR = 2
    MINOR = 0
    TINY = 2
 
    STRING = [MAJOR, MINOR, TINY].join('.')
  end
end