From: shibata.hiroshi@... Date: 2014-08-27T12:21:50+00:00 Subject: [ruby-core:64586] [ruby-trunk - Feature #10174] [Closed] [PATCH] Removed meaningless #to_s methods in interpolation Issue #10174 has been updated by Hiroshi SHIBATA. Status changed from Open to Closed % Done changed from 0 to 100 Applied in changeset r47299. ---------- * lib/drb/acl.rb: Removed meaningless #to_s methods in interpolation. [Feature #10174][ruby-core:64584] * lib/erb.rb: ditto. * lib/observer.rb: ditto. * lib/rake/invocation_chain.rb: ditto. * lib/rubygems/command_manager.rb: ditto. * lib/rubygems/config_file.rb: ditto. * lib/uri/common.rb: ditto. ---------------------------------------- Feature #10174: [PATCH] Removed meaningless #to_s methods in interpolation https://bugs.ruby-lang.org/issues/10174#change-48509 * Author: gogo tanaka * Status: Closed * Priority: Normal * Assignee: * Category: lib * Target version: ---------------------------------------- I found meaningless #to_s methods in interpolation like ... `"Failed to load #{filename}, #{e.to_s}"` So I changed these to like ... `"Failed to load #{filename}, #{e}"` ---Files-------------------------------- RemoveNomeaning_to_s.PATCH (3.02 KB) -- https://bugs.ruby-lang.org/