Sha256: 6645ba39a6b8b39f1c55956603a6711991cee513814954cdfc7c9ba2382eac63
Contents?: true
Size: 350 Bytes
Versions: 3
Compression:
Stored size: 350 Bytes
Contents
# frozen_string_literal: true module ActiveRecord # Returns the version of the currently loaded Active Record as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 7 MINOR = 0 TINY = 2 PRE = "3" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
3 entries across 3 versions & 2 rubygems