ruby/ext/pathname
schneems 3c54b8e920 Allow method chaining with Pathname#mkpath
Currently in my code when I want to create a pathname object and create a path at the same time I must use tap

```
path = Pathname.new("/tmp/new").tap(&:mkpath)
```

I think it would be cleaner to be able to chain on the results of these methods instead:

```
path = Pathname.new("/tmp/new").mkpath
```
2024-10-04 12:21:27 +09:00
..
lib Allow method chaining with Pathname#mkpath 2024-10-04 12:21:27 +09:00
depend ruby tool/update-deps --fix 2024-04-27 21:55:28 +09:00
extconf.rb [ruby/pathname] Remove check for File.birthtime 2024-04-16 05:48:57 +00:00
pathname.c [ruby/pathname] Remove check for File.birthtime 2024-04-16 05:48:57 +00:00
pathname.gemspec [ruby/pathname] Expose Pathname::VERSION 2023-04-14 12:42:36 +09:00