Sha256: 331d96b0dd531b15adf93c43c28cb0809c4b3c1f346fbc2e1b0b38f8e5f0578f
Contents?: true
Size: 350 Bytes
Versions: 2
Compression:
Stored size: 350 Bytes
Contents
# frozen_string_literal: true module ActiveModel # Returns the version of the currently loaded \Active \Model as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 6 MINOR = 1 TINY = 3 PRE = "1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
tdiary-5.1.6 | vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.3.1/lib/active_model/gem_version.rb |
activemodel-6.1.3.1 | lib/active_model/gem_version.rb |