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

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