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

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