Sha256: 8938f9cb1f465b82576c89b1afb567ef0e93de32472746ba4d9689408051e152
Contents?: true
Size: 342 Bytes
Versions: 4
Compression:
Stored size: 342 Bytes
Contents
# frozen_string_literal: true module ActiveSupport # Returns the currently loaded version of Active Support as a +Gem::Version+. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 7 MINOR = 1 TINY = 3 PRE = "4" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
4 entries across 4 versions & 4 rubygems