Sha256: b704666f319cf22748a54c40093be180292dd860c6a58a338be3d2c24f34808a
Contents?: true
Size: 315 Bytes
Versions: 2
Compression:
Stored size: 315 Bytes
Contents
module ActionView # Returns the version of the currently loaded Action View 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/actionview-5.0.0/lib/action_view/gem_version.rb |
actionview-5.0.0 | lib/action_view/gem_version.rb |