Sha256: 5a63d9c85e78f25abae4ec7f0ecebf38e2ce85494ae9605a3ca8973fe970cff2
Contents?: true
Size: 315 Bytes
Versions: 2
Compression:
Stored size: 315 Bytes
Contents
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 = 5 MINOR = 0 TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
abaci-0.3.0 | vendor/bundle/gems/actionpack-5.0.0/lib/action_pack/gem_version.rb |
actionpack-5.0.0 | lib/action_pack/gem_version.rb |