ruby/lib/rake/version.rb

15 строки
215 B
Ruby

# :include: doc/README.rdoc
module Rake
VERSION = '0.9.6'
module Version # :nodoc: all
MAJOR, MINOR, BUILD, = Rake::VERSION.split '.'
NUMBERS = [
MAJOR,
MINOR,
BUILD,
]
end
end