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

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