danielpclark / faster_path

Faster Pathname handling for Ruby written in Rust
MIT License
782 stars 33 forks source link

Migrate FasterPath's File code to Pathname #69

Closed danielpclark closed 7 years ago

danielpclark commented 8 years ago

Pathname has the added benefit of type safety and File is written in C and is therefor fast. We don't need any of FasterPath's method monkey-patched or refined on to File. We'll have them done only for Pathname.

So the task is to move existing monkey-patches and refinements that effect File and have the methods only apply to Pathname

danielpclark commented 7 years ago

Cancel this.