blob: 7b2cf305c2f7d50d2d790a1668fa9009b118dc08 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
module ActionMailer
# Returns the version of the currently loaded ActionMailer as a Gem::Version
def self.version
Gem::Version.new "4.2.0.alpha"
end
module VERSION #:nodoc:
MAJOR, MINOR, TINY, PRE = ActionMailer.version.segments
STRING = ActionMailer.version.to_s
end
end
|