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

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