Sha256: ac2a96c66c2a2d5f95b048cd1e113b351b0229e446a6814224bc3a133e156d9c

Contents?: true

Size: 340 Bytes

Versions: 1

Compression:

Stored size: 340 Bytes

Contents

# frozen_string_literal: true

module ActionMailer
  # Returns the currently loaded version of Action Mailer as a +Gem::Version+.
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 7
    MINOR = 1
    TINY  = 3
    PRE   = "1"

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
actionmailer-7.1.3.1 lib/action_mailer/gem_version.rb