version.rb 208 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 # frozen_string_literal: true module Rake VERSION = "12.3.0" module Version # :nodoc: all MAJOR, MINOR, BUILD, *OTHER = Rake::VERSION.split "." NUMBERS = [MAJOR, MINOR, BUILD, *OTHER] end end