mirror of
https://github.com/github/rails.git
synced 2026-01-07 22:03:54 -05:00
11 lines
173 B
Ruby
11 lines
173 B
Ruby
module ActionMailer
|
|
module VERSION #:nodoc:
|
|
MAJOR = 3
|
|
MINOR = 2
|
|
TINY = 19
|
|
PRE = nil
|
|
|
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
|
end
|
|
end
|