mail/lib/mail/version.rb

18 lines
233 B
Ruby

# frozen_string_literal: true
module Mail
module VERSION
MAJOR = 2
MINOR = 6
PATCH = 4
BUILD = nil
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
def self.version
STRING
end
end
end