Sha256: c2536f891dfe8ec4aa9dcef99463f15180f9289184c22ad981e64b9018eb3a22
Contents?: true
Size: 336 Bytes
Versions: 4
Compression:
Stored size: 336 Bytes
Contents
# frozen_string_literal: true module ActionText # Returns the currently loaded version of Action Text as a +Gem::Version+. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 7 MINOR = 1 TINY = 3 PRE = "4" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
4 entries across 4 versions & 4 rubygems