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

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