aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-23 22:24:44 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-23 22:24:44 +0000
commitea9c30bec1856e1a1c8c856d1f752258c70c15db (patch)
treedc28e04074dfc9305f408a42abbc39cfb91638c4 /bin
parentd001539a0538cba0e48be2ebdafe29e67b006a4e (diff)
downloadruby-ea9c30bec1856e1a1c8c856d1f752258c70c15db.tar.gz
* 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
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rake7
1 files changed, 4 insertions, 3 deletions
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