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

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