From: Takaaki Tateishi Date: 2003-01-20T20:03:00+09:00 Subject: ruby-dev summary 19346-19379 Hello, Here is a summary for last week on the ruby-dev mailing list. ruby-dev:19346-19379 [ruby-dev:19354] shellwords() Akinori Musha posted a patch for lib/shellwords.rb. It fixes a problem that '\' in single quotes is regarded as a meta character. [ruby-dev:19370] shebang line of bin/* U. Nakamura proposed that an absolute path to installed ruby should be used at a shebang line. Currently, the word `ruby' written at a shebang line of each file in `bin' directory is replaced with ruby_install_name at installation stage. In this proposal, the shebang line will be replaced with an absolute path to installed ruby. Current -- #!/usr/bin/env ruby --> #!/usr/bin/env ruby-1.6 Proposal -- #!/usr/bin/env ruby --> #!/usr/local/bin/ruby-1.6 -- Takaaki Tateishi