A PowerShell module for working with the Pushover API from the command line.
Sometimes you need to surface important alerts to your mobile device and desktop from your PowerShell scripts.
Run this before any other cmdlets to make sure you can communicate with your mobile devices.
Save-PushoverAPIInformation
Send-PushoverMessage -Title "Error Alert" -Message "Error occured today."
- Fork it.
- Create a branch (
git checkout -b my_markup
) - Commit your changes (
git commit -am "Added Snarkdown"
) - Push to the branch (
git push origin my_markup
) - Open a Pull Request
PSPushover uses the Pester Testing Framework for all testing.
Invoke-Pester -Path "path\to\project\"
Since PSPushover is included in the PowerShell Gallery it must also pass the PSScriptAnalyzer static analysis to make sure your code complies with community standards.
Find-Module -Name PSScriptAnalyzer | Install-Module
Invoke-ScriptAnalyzer -Path "path\To\project\"