blob: 5404ac54e94e901fe6652644d1d63b4a6858525c (
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 = 0
TINY = 0
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end
|