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

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