Skip to content

Commit 9dc2edd

Browse files
Merge pull request #1 from SeeminglyScience/fix-documentation-and-loading
Fix module loading and documentation link
2 parents 9aa66bc + c084f06 commit 9dc2edd

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

docs/en-US/ImpliedReflection.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
Module Name: ImpliedReflection
3+
Module Guid: 8834a5bf-9bf2-4f09-8415-3c1e561109f6 8834a5bf-9bf2-4f09-8415-3c1e561109f6
4+
Download Help Link:
5+
Help Version: 1.0.0
6+
Locale: en-US
7+
---
8+
9+
# ImpliedReflection Module
10+
11+
## Description
12+
13+
Explore private properties and methods as if they were public.
14+
15+
## ImpliedReflection Cmdlets
16+
17+
### [Add-PrivateMember](Add-PrivateMember.md)
18+
19+
The Add-PrivateMember function binds all non-public members to an object in the same way the PowerShell engine binds public members. This allows the members to be viewed and invoked like any other property or method typically bound by PowerShell. Properties will be added as PSProperty objects and Methods will be bound as PSMethod objects.
20+
21+
### [Disable-ImpliedReflection](Disable-ImpliedReflection.md)
22+
23+
The Disable-ImpliedReflection function will disable the binding of non-public members to any object outputted to the console.
24+
25+
### [Enable-ImpliedReflection](Enable-ImpliedReflection.md)
26+
27+
The Enable-ImpliedReflection function replaces the Out-Default cmdlet with a proxy function that invokes Add-PrivateMember on every object outputted to the console.

module/ImpliedReflection.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'ImpliedReflection.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.1.1'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '8834a5bf-9bf2-4f09-8415-3c1e561109f6'
@@ -80,7 +80,7 @@ PrivateData = @{
8080
# IconUri = ''
8181

8282
# ReleaseNotes of this module
83-
# ReleaseNotes = ''
83+
ReleaseNotes = '- Fixed the module not loading.'
8484

8585
} # End of PSData hashtable
8686

module/ImpliedReflection.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Import-LocalizedData -BindingVariable Strings -FileName Strings -ErrorAction Ignore
22

33
# Include all function files.
4-
Get-ChildItem $PSScriptRoot\Public\*.ps1, $PSScriptRoot\Private\*.ps1 | ForEach-Object {
4+
Get-ChildItem $PSScriptRoot\Public\*.ps1 | ForEach-Object {
55
. $PSItem.FullName
66
}
77

0 commit comments

Comments
 (0)