aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/version.rb
blob: 4dbc364e20bef491633a9fbc3e19393303a3fc9a (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionMailer
  module Version #:nodoc:
    MAJOR = 1
    MINOR = 1
    TINY  = 1

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