diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-19 23:03:25 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-19 23:03:25 +0000 |
commit | caca17a8987d53f47822c63120047ca6de4984ea (patch) | |
tree | 150b0d71cfa9fe20c3a444a18ad99b6205a4cae5 | |
parent | e87c6b192d14a27ae173aa449ecdd073fcee8b2e (diff) |
* lib/tempfile.rb: nodoc Tempfile#inspect
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/tempfile.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon May 20 08:02:13 2013 Zachary Scott <zachary@zacharyscott.net> + + * lib/tempfile.rb: nodoc Tempfile#inspect + Mon May 20 07:48:24 2013 Zachary Scott <zachary@zacharyscott.net> * ext/stringio/stringio.c: Correct position of method rdoc diff --git a/lib/tempfile.rb b/lib/tempfile.rb index 971e1919ea..e7df7d670e 100644 --- a/lib/tempfile.rb +++ b/lib/tempfile.rb @@ -261,11 +261,11 @@ class Tempfile < DelegateClass(File) end alias length size + # :stopdoc: def inspect "#<#{self.class}:#{path}>" end - # :stopdoc: class Remover def initialize(data) @pid = $$ |