Sha256: 7189d2e5abb95c5bb9a1cfe2239a117772ea60eae47fc8377fdd56b819049f17
Contents?: true
Size: 343 Bytes
Versions: 2
Compression:
Stored size: 343 Bytes
Contents
# 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 = 4 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
rails_mini_profiler-0.2.0 | vendor/bundle/ruby/3.0.0/gems/actiontext-6.1.4/lib/action_text/gem_version.rb |
actiontext-6.1.4 | lib/action_text/gem_version.rb |