1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailbox/lib/action_mailbox/gem_version.rb

18 lines
351 B
Ruby
Raw Normal View History

2018-12-24 15:16:22 -05:00
# frozen_string_literal: true
module ActionMailbox
# Returns the currently-loaded version of Action Mailbox as a <tt>Gem::Version</tt>.
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 6
2019-04-24 15:57:14 -04:00
MINOR = 1
2018-12-24 15:16:22 -05:00
TINY = 0
2020-11-02 16:12:47 -05:00
PRE = "rc1"
2018-12-24 15:16:22 -05:00
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end