Sha256: 9ccbe3c91f92c07fd314875b3d95855a8ec32cff1fcc080bbc5b6c2ac6d8b429
Contents?: true
Size: 347 Bytes
Versions: 4
Compression:
Stored size: 347 Bytes
Contents
# frozen_string_literal: true module ActiveRecord # Returns the currently loaded version of 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 = 5 PRE = "1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
4 entries across 4 versions & 2 rubygems