craig
craig

Reputation: 26272

Guard equivalent for PowerShell?

Is the a PowerShell equivalent to Ruby's guard gem?

The closest I've been able to find is Anthony Mastrean's 'lame' implementation (his words).

Upvotes: 1

Views: 300

Answers (1)

Steven Murawski
Steven Murawski

Reputation: 11255

I've got a basic implementation started - https://github.com/smurawski/PowerShellGuard

You can watch files, directories, and use filters to limit files being monitored. By default, it assumes Pester as the test framework, but you can use any test framework you can call from the command line.

Upvotes: 2

Related Questions