mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
87b3e226d6
This reverts commit3420a14590
, reversing changes made toafb66a5a59
.
15 lines
317 B
Ruby
15 lines
317 B
Ruby
module ActiveJob
|
|
# Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
|
|
def self.gem_version
|
|
Gem::Version.new VERSION::STRING
|
|
end
|
|
|
|
module VERSION
|
|
MAJOR = 5
|
|
MINOR = 2
|
|
TINY = 0
|
|
PRE = "alpha"
|
|
|
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
|
end
|
|
end
|