diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-18 16:57:36 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-18 16:57:36 +0000 |
commit | c04ef9321c664a18eb8452635848b801c7e3dbbf (patch) | |
tree | b35d951d6831319efeac6b2b5bc9aacd9dc2d399 /instruby.rb | |
parent | 734665d3a963ebb76a6d6710a636b7d8b0d4ecb9 (diff) | |
download | bundler-c04ef9321c664a18eb8452635848b801c7e3dbbf.tar.gz |
* bin/irb: Moved from sample/irb.rb.
* instruby.rb: Install script files under bin/ with ruby's program
prefix and suffix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r-- | instruby.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/instruby.rb b/instruby.rb index 8ab84ad93e..6449298b00 100644 --- a/instruby.rb +++ b/instruby.rb @@ -98,7 +98,13 @@ end Dir.chdir CONFIG["srcdir"] -Installer.install "sample/irb.rb", "#{bindir}/irb", 0755, true +for f in Dir["bin/*"] + next unless File.file?(f) + + name = ruby_install_name.sub(/ruby/, File.basename(f)) + + Installer.install f, File.join(bindir, name), 0755, true +end Dir.glob("lib/**/*{.rb,help-message}") do |f| dir = File.dirname(f).sub!(/\Alib/, rubylibdir) || rubylibdir |