Skip to content

Commit

Permalink
Merge pull request #2048 from ruby/fix-GH-3705
Browse files Browse the repository at this point in the history
Pathname#mkpath and Pathname#rmtree returns self from Ruby 3.4
  • Loading branch information
soutaro authored Dec 18, 2024
2 parents 4409572 + ca0f2a0 commit cdce00a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions stdlib/pathname/0/pathname.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ class Pathname
#
# See FileUtils.mkpath and FileUtils.mkdir_p
#
def mkpath: () -> nil
def mkpath: () -> self

# <!--
# rdoc-file=ext/pathname/lib/pathname.rb
Expand Down Expand Up @@ -1106,7 +1106,7 @@ class Pathname
#
# See FileUtils.rm_rf
#
def rmtree: () -> void
def rmtree: () -> self

# <!--
# rdoc-file=ext/pathname/lib/pathname.rb
Expand Down
10 changes: 4 additions & 6 deletions test/stdlib/Pathname_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -458,13 +458,11 @@ def test_mkdir
end

def test_mkpath
if_ruby(... 3.4) do
Dir.mktmpdir do |dir|
dir = Pathname(dir)
Dir.mktmpdir do |dir|
dir = Pathname(dir)

assert_send_type '() -> nil',
assert_send_type '() -> Pathname',
dir + 'a/b/c', :mkpath
end
end
end

Expand Down Expand Up @@ -644,7 +642,7 @@ def test_rmtree
Dir.mktmpdir do |dir|
target = Pathname(dir).join('target')
target.mkdir
assert_send_type '() -> void',
assert_send_type '() -> Pathname',
target, :rmtree
end
end
Expand Down

0 comments on commit cdce00a

Please sign in to comment.