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

18 lines
358 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-07-24 15:20:55 -04:00
module ActiveStorage
# Returns the version of the currently loaded Active Storage as a <tt>Gem::Version</tt>.
2017-07-24 15:20:55 -04:00
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 7
MINOR = 0
2017-07-24 15:20:55 -04:00
TINY = 0
2021-09-15 17:55:08 -04:00
PRE = "alpha1"
2017-07-24 15:20:55 -04:00
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end