aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/version.rb
blob: 557b05f14eb7274d3609c7743e0225491b80637c (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionMailer
  module Version
    MAJOR = 1
    MINOR = 0
    TINY  = 1

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