1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activestorage/lib/active_storage/gem_version.rb
Rafael Mendonça França 83d85b2207
Start Rails 7.1 development
2021-12-07 15:52:30 +00:00

17 lines
357 B
Ruby

# frozen_string_literal: true
module ActiveStorage
# Returns the version of the currently loaded Active Storage as a <tt>Gem::Version</tt>.
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 7
MINOR = 1
TINY = 0
PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end