Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.01 KB

readme.md

File metadata and controls

30 lines (23 loc) · 1.01 KB

Build

build status build coverage

Modules

  • gibbels-common
  • gibbels-algorithms

Common

The common module is a building block that houses code shared across higher level modules. You can import the module as follows:

Install-Module -Name "gibbels-common"
Import-Module -Name "gibbels-common" -Scope CurrentUser

Supported cmdlets are:

  • Get-DotNetVersions

Algorithms

The algorithms module contains a bunch of functions based on popular, or useful (in my opinion) algorithms. You can import the module as follows:

Install-Module -Name "gibbels-algorithms"
Import-Module -Name "gibbels-algorithms" -Scope CurrentUser

Supported cmdlets are:

  • Test-LuhnValidation
  • Test-LevenshteinDistance