lib/rails/gem_version.rb in railties-7.0.8.6 vs lib/rails/gem_version.rb in railties-7.1.0.beta1
- old
+ new
@@ -1,17 +1,17 @@
# frozen_string_literal: true
module Rails
- # Returns the currently loaded version of Rails as a <tt>Gem::Version</tt>.
+ # Returns the currently loaded version of \Rails as a +Gem::Version+.
def self.gem_version
Gem::Version.new VERSION::STRING
end
module VERSION
MAJOR = 7
- MINOR = 0
- TINY = 8
- PRE = "6"
+ MINOR = 1
+ TINY = 0
+ PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
end