class Guard::Rust

Public Instance Methods

run_on_changes(paths) click to toggle source
# File lib/guard/rust.rb, line 7
def run_on_changes(paths)
  paths.each do |path|
    system "cargo test --manifest-path ./#{path}/Cargo.toml"
  end
end