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

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