mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ea9c30bec1
* bin/rake: Import bin/rake from 0.9.2 * tool/rbinstall.rb (install): Rake::VERSION is now in lib/rake/version.rb. Fixes `make install` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
8 lines
142 B
Ruby
8 lines
142 B
Ruby
module Rake
|
|
VERSION = '0.9.2'
|
|
|
|
module Version
|
|
MAJOR, MINOR, BUILD = VERSION.split '.'
|
|
NUMBERS = [ MAJOR, MINOR, BUILD ]
|
|
end
|
|
end
|