2e81ca2d30
Updated to Rails 2.2.2. Added a couple more Ruby 1.9 fixes, but that's pretty much at a standstill, until one gets Maruku and HTML5lib working right under Ruby 1.9.
10 lines
150 B
Ruby
10 lines
150 B
Ruby
module ActionPack #:nodoc:
|
|
module VERSION #:nodoc:
|
|
MAJOR = 2
|
|
MINOR = 2
|
|
TINY = 2
|
|
|
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
|
end
|
|
end
|