1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailer/lib/action_mailer/version.rb
2005-10-16 15:00:27 +00:00

9 lines
143 B
Ruby

module ActionMailer
module Version #:nodoc:
MAJOR = 1
MINOR = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
end