Sha256: 27b0071a3aacf5bc61c0ccb703797173035207cf7c6ffad0aa7dbfdda4cc649c
Contents?: true
Size: 346 Bytes
Versions: 2
Compression:
Stored size: 346 Bytes
Contents
# frozen_string_literal: true module ActionPack # Returns the version of the currently loaded Action Pack 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/actionpack-6.1.4/lib/action_pack/gem_version.rb |
actionpack-6.1.4 | lib/action_pack/gem_version.rb |