posh-gist.psm1
param([switch]$NoVersionWarn = $false) if (Get-Module posh-gist) { return } Push-Location $psScriptRoot . .\posh-gist.ps1 Pop-Location Export-ModuleMember ` -Function @( 'Get-Gist', 'New-Gist', 'Remove-Gist', 'Update-Gist', 'Get-GistCommits', 'Get-GistStar' ) |