mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
remove trainling spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9bb6a05283
commit
d059d718b5
24 changed files with 45 additions and 45 deletions
|
@ -9,7 +9,7 @@ Tue Aug 21 10:52:08 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
|||
|
||||
Tue Aug 21 10:40:06 2012 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* test_continuation.rb (tracing_with_thread_set_trace_func):
|
||||
* test_continuation.rb (tracing_with_thread_set_trace_func):
|
||||
fix to use Thread#set_trace_func(nil), not set_trace_func(nil).
|
||||
|
||||
Tue Aug 21 09:32:41 2012 Ryan Davis <ryand-ruby@zenspider.com>
|
||||
|
|
|
@ -91,7 +91,7 @@ class CGI
|
|||
def CGI::escape_html(str)
|
||||
escapeHTML(str)
|
||||
end
|
||||
|
||||
|
||||
# Synonym for CGI::unescapeHTML(str)
|
||||
def CGI::unescape_html(str)
|
||||
unescapeHTML(str)
|
||||
|
@ -145,7 +145,7 @@ class CGI
|
|||
def CGI::escape_element(str)
|
||||
escapeElement(str)
|
||||
end
|
||||
|
||||
|
||||
# Synonym for CGI::unescapeElement(str)
|
||||
def CGI::unescape_element(str)
|
||||
unescapeElement(str)
|
||||
|
|
|
@ -2342,8 +2342,8 @@ class CSV
|
|||
|
||||
private
|
||||
|
||||
#
|
||||
# Returns the encoding of the internal IO object or the +default+ if the
|
||||
#
|
||||
# Returns the encoding of the internal IO object or the +default+ if the
|
||||
# encoding cannot be determined.
|
||||
#
|
||||
def raw_encoding(default = Encoding::ASCII_8BIT)
|
||||
|
|
|
@ -1382,7 +1382,7 @@ module DRb
|
|||
def alive?
|
||||
@thread.alive?
|
||||
end
|
||||
|
||||
|
||||
def here?(uri)
|
||||
@exported_uri.include?(uri)
|
||||
end
|
||||
|
|
|
@ -177,7 +177,7 @@ module Forwardable
|
|||
|
||||
# Define +method+ as delegator instance method with an optional
|
||||
# alias name +ali+. Method calls to +ali+ will be delegated to
|
||||
# +accessor.method+.
|
||||
# +accessor.method+.
|
||||
#
|
||||
# class MyQueue
|
||||
# extend Forwardable
|
||||
|
@ -185,7 +185,7 @@ module Forwardable
|
|||
# def initialize
|
||||
# @queue = []
|
||||
# end
|
||||
#
|
||||
#
|
||||
# def_delegator :@queue, :push, :mypush
|
||||
# end
|
||||
#
|
||||
|
|
|
@ -392,7 +392,7 @@ class IPAddr
|
|||
return self
|
||||
end
|
||||
|
||||
# Set current netmask to given mask.
|
||||
# Set current netmask to given mask.
|
||||
def mask!(mask)
|
||||
if mask.kind_of?(String)
|
||||
if mask =~ /^\d+$/
|
||||
|
@ -626,7 +626,7 @@ unless Socket.const_defined? "AF_INET6"
|
|||
|
||||
# Returns a +String+ based representation of a valid DNS hostname,
|
||||
# IPv4 or IPv6 address.
|
||||
#
|
||||
#
|
||||
# IPSocket.getaddress 'localhost' #=> "::1"
|
||||
# IPSocket.getaddress 'broadcasthost' #=> "255.255.255.255"
|
||||
# IPSocket.getaddress 'www.ruby-lang.org' #=> "221.186.184.68"
|
||||
|
|
|
@ -299,7 +299,7 @@ module Net
|
|||
def self.default_port
|
||||
return PORT
|
||||
end
|
||||
|
||||
|
||||
# The default port for IMAPS connections, port 993
|
||||
def self.default_tls_port
|
||||
return SSL_PORT
|
||||
|
@ -1140,7 +1140,7 @@ module Net
|
|||
@tagged_response_arrival.broadcast
|
||||
@continuation_request_arrival.broadcast
|
||||
if @idle_done_cond
|
||||
@idle_done_cond.signal
|
||||
@idle_done_cond.signal
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -96,7 +96,7 @@ extensions.
|
|||
# TODO use installer options
|
||||
install_defaults = Gem::ConfigFile::PLATFORM_DEFAULTS['install']
|
||||
installer_env_shebang = install_defaults.to_s['--env-shebang']
|
||||
|
||||
|
||||
installer = Gem::Installer.new(gem,
|
||||
:wrappers => true,
|
||||
:force => true,
|
||||
|
|
|
@ -27,13 +27,13 @@ module WEBrick
|
|||
class << self
|
||||
attr_reader :code, :reason_phrase # :nodoc:
|
||||
end
|
||||
|
||||
|
||||
# Returns the HTTP status code
|
||||
def code() self::class::code end
|
||||
|
||||
|
||||
# Returns the HTTP status description
|
||||
def reason_phrase() self::class::reason_phrase end
|
||||
|
||||
|
||||
alias to_i code # :nodoc:
|
||||
end
|
||||
|
||||
|
@ -146,31 +146,31 @@ module WEBrick
|
|||
def info?(code)
|
||||
code.to_i >= 100 and code.to_i < 200
|
||||
end
|
||||
|
||||
|
||||
##
|
||||
# Is +code+ a successful status?
|
||||
def success?(code)
|
||||
code.to_i >= 200 and code.to_i < 300
|
||||
end
|
||||
|
||||
|
||||
##
|
||||
# Is +code+ a redirection status?
|
||||
def redirect?(code)
|
||||
code.to_i >= 300 and code.to_i < 400
|
||||
end
|
||||
|
||||
|
||||
##
|
||||
# Is +code+ an error status?
|
||||
def error?(code)
|
||||
code.to_i >= 400 and code.to_i < 600
|
||||
end
|
||||
|
||||
|
||||
##
|
||||
# Is +code+ a client error status?
|
||||
def client_error?(code)
|
||||
code.to_i >= 400 and code.to_i < 500
|
||||
end
|
||||
|
||||
|
||||
##
|
||||
# Is +code+ a server error status?
|
||||
def server_error?(code)
|
||||
|
|
|
@ -329,7 +329,7 @@ class TestCSV::Encodings < TestCSV
|
|||
yield encoding
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def no_warnings
|
||||
old_verbose, $VERBOSE = $VERBOSE, nil
|
||||
yield
|
||||
|
|
|
@ -274,13 +274,13 @@ class TestCSV::Features < TestCSV
|
|||
assert(CSV::VERSION.frozen?)
|
||||
assert_match(/\A\d\.\d\.\d\Z/, CSV::VERSION)
|
||||
end
|
||||
|
||||
|
||||
def test_accepts_comment_skip_lines_option
|
||||
assert_nothing_raised(ArgumentError) do
|
||||
CSV.new nil, :skip_lines => /\A\s*#/
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def test_accepts_comment_defaults_to_nil
|
||||
c = CSV.new nil
|
||||
assert_equal c.skip_lines, nil
|
||||
|
|
|
@ -292,7 +292,7 @@ class TestSH < Test::Unit::TestCase
|
|||
Date.today.strftime('%100000z')
|
||||
end
|
||||
assert_raise(Errno::ERANGE) do
|
||||
Date.new(1 << 10000).strftime('%Y')
|
||||
Date.new(1 << 10000).strftime('%Y')
|
||||
end
|
||||
assert_equal('-3786825600', Date.new(1850).strftime('%s'))
|
||||
assert_equal('-3786825600000', Date.new(1850).strftime('%Q'))
|
||||
|
|
|
@ -310,7 +310,7 @@ class TestBug4409 < Test::Unit::TestCase
|
|||
def teardown
|
||||
@ext.stop_service if @ext
|
||||
end
|
||||
|
||||
|
||||
def test_bug4409
|
||||
foo = @there.foo
|
||||
assert(@there.foo?(foo))
|
||||
|
|
|
@ -200,7 +200,7 @@ class OpenSSL::TestASN1 < Test::Unit::TestCase
|
|||
|
||||
def test_encode_nil
|
||||
m = OpenSSL::ASN1
|
||||
[
|
||||
[
|
||||
m::Boolean, m::Integer, m::BitString, m::OctetString,
|
||||
m::ObjectId, m::Enumerated, m::UTF8String, m::UTCTime,
|
||||
m::GeneralizedTime, m::Sequence, m::Set
|
||||
|
|
|
@ -56,7 +56,7 @@ class OpenSSL::TestEngine < Test::Unit::TestCase
|
|||
$stderr.reopen(err_back)
|
||||
err_back.close
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ module OpenSSL
|
|||
["subjectKeyIdentifier","hash",false],
|
||||
["authorityKeyIdentifier","keyid:always",false],
|
||||
]
|
||||
|
||||
|
||||
@cacert = issue_cert(ca, TEST_KEY_RSA2048, 1, now, now+3600, ca_exts,
|
||||
nil, nil, OpenSSL::Digest::SHA1.new)
|
||||
|
||||
|
@ -108,7 +108,7 @@ Li8JsX5yIiuVYaBg/6ha3tOg4TCa5K/3r3tVliRZ2Es=
|
|||
assert_equal chain.size, decoded.ca_certs.size
|
||||
assert_include_cert @cacert, decoded.ca_certs
|
||||
assert_include_cert @inter_cacert, decoded.ca_certs
|
||||
assert_cert @mycert, decoded.certificate
|
||||
assert_cert @mycert, decoded.certificate
|
||||
assert_equal TEST_KEY_RSA1024.to_der, decoded.key.to_der
|
||||
end
|
||||
|
||||
|
|
|
@ -146,7 +146,7 @@ class OpenSSL::TestPKCS7 < Test::Unit::TestCase
|
|||
assert_equal(3, recip[1].serial)
|
||||
assert_equal(data, p7.decrypt(@rsa1024, @ee2_cert))
|
||||
end
|
||||
|
||||
|
||||
def test_graceful_parsing_failure #[ruby-core:43250]
|
||||
contents = File.read(__FILE__)
|
||||
assert_raise(ArgumentError) { OpenSSL::PKCS7.new(contents) }
|
||||
|
|
|
@ -119,7 +119,7 @@ class OpenSSL::TestEC < Test::Unit::TestCase
|
|||
assert_equal(a, b)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def test_read_private_key_der
|
||||
ec = OpenSSL::TestUtils::TEST_KEY_EC_P256V1
|
||||
der = ec.to_der
|
||||
|
|
|
@ -412,7 +412,7 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
|
|||
# SSL/TLS version that has been marked as forbidden, therefore either of
|
||||
# these may be raised
|
||||
FORBIDDEN_PROTOCOL_ERRORS = [OpenSSL::SSL::SSLError, Errno::ECONNRESET]
|
||||
|
||||
|
||||
if OpenSSL::SSL::SSLContext::METHODS.include? :TLSv1
|
||||
|
||||
def test_forbid_ssl_v3_for_client
|
||||
|
@ -515,7 +515,7 @@ end
|
|||
}
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
private
|
||||
|
||||
def start_server_version(version, ctx_proc=nil, server_proc=nil, &blk)
|
||||
|
@ -524,11 +524,11 @@ end
|
|||
ctx_proc.call(ctx) if ctx_proc
|
||||
}
|
||||
start_server(
|
||||
PORT,
|
||||
OpenSSL::SSL::VERIFY_NONE,
|
||||
true,
|
||||
:ctx_proc => ctx_wrap,
|
||||
:server_proc => server_proc,
|
||||
PORT,
|
||||
OpenSSL::SSL::VERIFY_NONE,
|
||||
true,
|
||||
:ctx_proc => ctx_wrap,
|
||||
:server_proc => server_proc,
|
||||
&blk
|
||||
)
|
||||
end
|
||||
|
|
|
@ -23,7 +23,7 @@ class TestRakeTopLevelFunctions < Rake::TestCase
|
|||
def test_namespace
|
||||
block = proc do end
|
||||
|
||||
namespace("xyz", &block)
|
||||
namespace("xyz", &block)
|
||||
|
||||
expected = [
|
||||
[[:in_namespace, 'xyz'], block]
|
||||
|
|
|
@ -16,7 +16,7 @@ class TestRipper::Generic < Test::Unit::TestCase
|
|||
SCANNER_EVENTS.each {|n| eval "def on_#{n}(*args) r = [:#{n}, *args]; r.inspect; Object.new end" }
|
||||
end
|
||||
|
||||
TEST_RATIO = 0.05 # testing all files needs too long time...
|
||||
TEST_RATIO = 0.05 # testing all files needs too long time...
|
||||
|
||||
def capture_stderr
|
||||
err = StringIO.new
|
||||
|
|
|
@ -2,7 +2,7 @@ require 'rubygems/test_case'
|
|||
require 'rubygems/commands/cleanup_command'
|
||||
|
||||
class TestGemCommandsCleanupCommand < Gem::TestCase
|
||||
|
||||
|
||||
def setup
|
||||
super
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ class TestGemSilentUI < Gem::TestCase
|
|||
|
||||
assert_empty out, 'No output'
|
||||
assert_empty err, 'No output'
|
||||
|
||||
|
||||
out, err = capture_io do
|
||||
use_ui @sui do
|
||||
value = @sui.ask_yes_no 'Problem?', true
|
||||
|
@ -60,7 +60,7 @@ class TestGemSilentUI < Gem::TestCase
|
|||
assert_empty err, 'No output'
|
||||
|
||||
assert value, 'Value is true'
|
||||
|
||||
|
||||
out, err = capture_io do
|
||||
use_ui @sui do
|
||||
value = @sui.ask_yes_no 'Problem?', false
|
||||
|
|
|
@ -220,7 +220,7 @@ class TestGemUninstaller < Gem::InstallerTestCase
|
|||
|
||||
def test_uninstall_selection_greater_than_one
|
||||
util_make_gems
|
||||
|
||||
|
||||
list = Gem::Specification.find_all_by_name('a')
|
||||
|
||||
uninstaller = Gem::Uninstaller.new('a')
|
||||
|
|
Loading…
Reference in a new issue