-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from StartAutomating/Eventful-Updates
Eventful 0.1.8
- Loading branch information
Showing
71 changed files
with
1,182 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [StartAutomating] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
This directory contains the built-in EventSources in Eventful. | ||
|
||
_Technically speaking_, EventSources can exist in any directory, as long as they are named liked `@*.ps1` and match `^@\w`. | ||
|
||
Event sources within Eventful or modules that tag Eventful will be automatically included. | ||
|
||
Watch-Event will also check the local directory for event sources. | ||
|
||
|
||
|Name |Synopsis | | ||
|--------------------------------------------------------|----------------------------------------------| | ||
|[@CommandNotFound](/docs/CommandNotFound-EventSource.md)|Sends events when a command is not found.<br/>| | ||
|[@Delay](/docs/Delay-EventSource.md) |Send an event after a delay.<br/> | | ||
|[@Event](/docs/Event-EventSource.md) |Watches for new events.<br/> | | ||
|[@FileChange](/docs/FileChange-EventSource.md) |Watches for File Changes.<br/> | | ||
|[@HttpResponse](/docs/HttpResponse-EventSource.md) |Sends events on HTTP Responses.<br/> | | ||
|[@Job](/docs/Job-EventSource.md) |Watches a PowerShell Job's State.<br/> | | ||
|[@LocationChanged](/docs/LocationChanged-EventSource.md)|Sends events when the directory changes.<br/> | | ||
|[@ModuleChanged](/docs/ModuleChanged-EventSource.md) |Watches for Module loads and unloads.<br/> | | ||
|[@PowerShellAsync](/docs/PowerShellAsync-EventSource.md)|Runs PowerShell asynchronously<br/> | | ||
|[@Process](/docs/Process-EventSource.md) |Watches a process.<br/> | | ||
|[@Repeat](/docs/Repeat-EventSource.md) |Send events on repeat.<br/> | | ||
|[@Time](/docs/Time-EventSource.md) |Sends an event at a specific time.<br/> | | ||
|[@UDP](/docs/UDP-EventSource.md) |Signals on UDP <br/> | | ||
|[@VariableSet](/docs/VariableSet-EventSource.md) |Watches for variable sets.<br/> | | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
This directory contains the built-in EventSources in Eventful. | ||
|
||
_Technically speaking_, EventSources can exist in any directory, as long as they are named liked `@*.ps1` and match `^@\w`. | ||
|
||
Event sources within Eventful or modules that tag Eventful will be automatically included. | ||
|
||
Watch-Event will also check the local directory for event sources. | ||
|
||
~~~PipeScript{ | ||
$imported = Import-Module ../ -Global -PassThru | ||
[PSCustomObject]@{ | ||
Table = Get-EventSource | | ||
.Name { | ||
"[$($_.Name -replace '\.ps1$')](/docs/$($_.Name -replace '^@' -replace '\.ps1$')-EventSource.md)" | ||
} .Synopsis | ||
} | ||
} | ||
~~~ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.