blob: 8b4103712c9c5d5548d533399c48916e7aa03929 (
plain) (
tree)
|
|
# frozen_string_literal: true
module ActionText
# Returns the currently-loaded version of Action Text as a <tt>Gem::Version</tt>.
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 6
MINOR = 1
TINY = 0
PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end
|