Sha256: 08b559cd847504ec2f811cc0c8cc38d3ae39d05c5a343dc98c3c4f9fa08dccea
Contents?: true
Size: 347 Bytes
Versions: 4
Compression:
Stored size: 347 Bytes
Contents
# frozen_string_literal: true module ActionMailer # Returns the currently loaded version of Action Mailer 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