ActionsLike0
Bug #7027
closedTempfile#inspect is Confusing
Description
I think Tempfile#inspect is really confusing.
It says Tempfile object is a File, but it is not a File object.
% irb -r tempfile
irb(main):001:0> t = Tempfile.new("hoge")
=> #File:/tmp/hoge20120916-12354-uontdm
irb(main):002:0> t.is_a? File
=> false
irb(main):003:0>
see also (Japanese): http://r7kamura.hatenablog.com/entry/2012/09/05/194630
Files
Updated by mame (Yusuke Endoh) over 12 years ago
- Status changed from Open to Assigned
- Assignee set to Glass_saga (Masaki Matsushita)
- Target version set to 2.0.0
Updated by Glass_saga (Masaki Matsushita) over 12 years ago
- Status changed from Assigned to Closed
ActionsLike0