aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_pack/version.rb
blob: fd039fe1409e182e131cee4bf126b61846a9eba4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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