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

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