ext/faster_path/extconf.rb in faster_path-0.1.10 vs ext/faster_path/extconf.rb in faster_path-0.1.11
- old
+ new
@@ -6,14 +6,14 @@
puts "You need to have Rust installed for this gem to build natively."
puts "Please install the latest nightly build:"
puts
puts "curl -sSf https://static.rust-lang.org/rustup.sh | sudo sh -s -- --channel=nightly"
puts
- END { puts "Exiting..."}
+ at_exit { puts "Exiting..."}
end
Dir.chdir(File.expand_path("../../", File.dirname(__FILE__))) do
- %x(rake build_src)
- %x(rake clean_src)
+ `rake build_src`
+ `rake clean_src`
end
create_makefile('faster_path/dummy')