blob: 35272705c3b0d905fe2ed136b975902dfeeaf6d1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# frozen_string_literal: true
module Rake
VERSION = "13.4.2"
module Version # :nodoc: all
MAJOR, MINOR, BUILD, *OTHER = Rake::VERSION.split "."
NUMBERS = [MAJOR, MINOR, BUILD, *OTHER]
end
end
|