mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 34166:
* lib/shellwords.rb (Shellwords#shellescape): Drop the //n flag that only causes warnings with no real effect. [Bug #5637] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f4df871a4f
commit
b760f18a9f
4 changed files with 23 additions and 4 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Sun Feb 12 16:38:13 2012 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* lib/shellwords.rb (Shellwords#shellescape): Drop the //n flag
|
||||
that only causes warnings with no real effect. [Bug #5637]
|
||||
|
||||
Sun Feb 12 16:34:55 2012 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* tool/merger.rb (#default_merge_branch): Add support for
|
||||
|
|
|
|||
|
|
@ -69,15 +69,21 @@ module Shellwords
|
|||
# # ...
|
||||
# }
|
||||
#
|
||||
# It is caller's responsibility to encode the string in the right
|
||||
# encoding for the shell environment where this string is used.
|
||||
# Multibyte characters are treated as multibyte characters, not
|
||||
# bytes.
|
||||
#
|
||||
def shellescape(str)
|
||||
# An empty argument will be skipped, so return empty quotes.
|
||||
return "''" if str.empty?
|
||||
|
||||
str = str.dup
|
||||
|
||||
# Process as a single byte sequence because not all shell
|
||||
# implementations are multibyte aware.
|
||||
str.gsub!(/([^A-Za-z0-9_\-.,:\/@\n])/n, "\\\\\\1")
|
||||
# Treat multibyte characters as is. It is caller's responsibility
|
||||
# to encode the string in the right encoding for the shell
|
||||
# environment.
|
||||
str.gsub!(/([^A-Za-z0-9_\-.,:\/@\n])/, "\\\\\\1")
|
||||
|
||||
# A LF cannot be escaped with a backslash because a backslash + LF
|
||||
# combo is regarded as line continuation and simply ignored.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
require 'test/unit'
|
||||
require 'shellwords'
|
||||
|
||||
|
|
@ -36,4 +37,11 @@ class TestShellwords < Test::Unit::TestCase
|
|||
shellwords(bad_cmd)
|
||||
end
|
||||
end
|
||||
|
||||
def test_multibyte_characters
|
||||
# This is not a spec. It describes the current behavior which may
|
||||
# be changed in future. There would be no multibyte character
|
||||
# used as shell meta-character that needs to be escaped.
|
||||
assert_equal "\\あ\\い", "あい".shellescape
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 98
|
||||
#define RUBY_PATCHLEVEL 99
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-02-12"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue