Actions
Feature #12596
closedAdd Pathname#empty? to be consistent with Dir.empty? and File.empty?
Description
#9969 and #10121 introduced Dir.empty?
and File.empty?
. It would be very useful if Pathname
had an instance method for performing these same checks.
Since Pathname
already has several methods which work for both files and directories (for example, Pathname#exist?
) I propose adding Pathname#empty?
which would work for expose the behavior that File.empty?
and Dir.empty?
provide.
I think this change especially makes sense given that, just like File.empty?
was added as an alias of File.zero?
, it seems like Pathname#zero?
should also benefit from the same naming improvement provided by this alias.
Updated by nobu (Nobuyoshi Nakada) over 8 years ago
- Assignee changed from matz (Yukihiro Matsumoto) to akr (Akira Tanaka)
Updated by akr (Akira Tanaka) about 8 years ago
- Status changed from Open to Closed
implemented at r56571
Actions
Like0
Like0Like0