From ea9c30bec1856e1a1c8c856d1f752258c70c15db Mon Sep 17 00:00:00 2001 From: drbrain Date: Thu, 23 Jun 2011 22:24:44 +0000 Subject: * lib/rake/version.rb: Fixed VERSION to work with tool/rbinstall.rb * 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 --- bin/rake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bin/rake') diff --git a/bin/rake b/bin/rake index c9e95da611..0de43c97ec 100755 --- a/bin/rake +++ b/bin/rake @@ -23,9 +23,10 @@ #++ begin - require 'rake' -rescue LoadError require 'rubygems' - require 'rake' +rescue LoadError end + +require 'rake' + Rake.application.run -- cgit v1.2.3