Rakefile in faster_path-0.0.4 vs Rakefile in faster_path-0.0.5
- old
+ new
@@ -15,11 +15,10 @@
FileUtils.
rm_rf(
Dir.
glob('target/release/*').
keep_if {|f|
- # TODO: change regex to include other library extensions for other OS builds
- !f[/\.so\z/]
+ !f[/\.(?:so|dll)\z/]
}
)
end
desc "Compiling Rust extension..."