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

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