aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/version.rb
blob: b0cfa198916a5f7d11a1d289d7308454b6d6c14d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
require_relative "gem_version"

module ActionMailer
  # Returns the version of the currently loaded Action Mailer as a
  # <tt>Gem::Version</tt>.
  def self.version
    gem_version
  end
end