summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-06 08:06:21 +0000
committerglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-06 08:06:21 +0000
commit31f72cf518c58567a4f5daac64d990654d835ef8 (patch)
tree093ffc3181c504bdd423f8a5418218d3af644851
parente2418e3fcada21067b98032d514c34586f078b5b (diff)
* lib/tempfile.rb: fix confusing inspect.
previous Tempfile#inspect says it is a File, but actually it is not a File. t = Tempfile.new("foo") #=> #<File:/tmp/foo20121106-31970-1ffbum0> t.is_a? File #=> false now Tempfile#inspect returns like: t = Tempfile.new("foo") #=> #<Tempfile:/tmp/foo20121106-31970-1ffbum0> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog14
-rw-r--r--lib/tempfile.rb4
2 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8134928758..03dd5c4320 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Tue Nov 6 16:50:00 2012 Masaki Matsushita <glass.saga@gmail.com>
+
+ * lib/tempfile.rb (Tempfile#inspect): fix confusing #inspect.
+ previous Tempfile#inspect says it is a File, but actually
+ it is not a File.
+
+ t = Tempfile.new("foo") #=> #<File:/tmp/foo20121106-31970-1ffbum0>
+ t.is_a? File #=> false
+
+ now Tempfile#inspect returns like:
+
+ t = Tempfile.new("foo")
+ #=> #<Tempfile:/tmp/foo20121106-31970-1ffbum0>
+
Tue Nov 6 16:22:30 2012 Naohisa Goto <ngotogenome@gmail.com>
* atomic.h: add #include <sys/atomic.h> for the workaround of
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index 9f4ed8f3fd..fe7839158a 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -261,6 +261,10 @@ class Tempfile < DelegateClass(File)
end
alias length size
+ def inspect
+ "#<#{self.class}:#{path}>"
+ end
+
# :stopdoc:
class Remover
def initialize(data)