Skip to content

Commit

Permalink
Merge pull request #9 from pezhore/master
Browse files Browse the repository at this point in the history
Module refactor, Automated Testing, bundled libaries
  • Loading branch information
Phil Factor authored Jul 20, 2017
2 parents d5961b9 + 43e1c82 commit 4a00d16
Show file tree
Hide file tree
Showing 25 changed files with 1,706 additions and 590 deletions.
19 changes: 19 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,22 @@
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.md text
*.gitattributes text

# Declare files that will always have CRLF line endings on checkout.
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
*.psc1 text eol=crlf
*.ps1xml text eol=crlf
*.clixml text eol=crlf
*.xml text eol=crlf
*.txt text eol=crlf

# Denote all files that are truly binary and should not be mergeable.
*.dll binary
*.exe binary
457 changes: 457 additions & 0 deletions Documentation.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion Documentation.adoc → Legacy_Documentation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -501,4 +501,3 @@ YAML also has a rather crude way of allowing you to represent relational data by
I find YAML to be very useful. What really convinces me of the power of YAML is to be able to walk the representational model to do special-purpose jobs such as processing hierarchical data to load into SQL. It is at that point that I finally decided that YAML had a lot going for it as a format of data document.
Binary file added Media/YAML_PS.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions PSDeploy/PSYaml.PSDeploy.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Specify Module Name
$ModuleName = "PSYaml"

# Determine our installation path based on where "My Documents" is located
$InstallPath = $env:PSModulePath.split(";") | Where-Object {$_ -match "My Documents" -or $_ -match "Documents"}

# Specify deploy task
Deploy "Install $ModuleName" {
By Filesystem {
FromSource $ModuleName
To "$($InstallPath)\$($ModuleName)"
WithOptions @{
# This overrides any existing content
Mirror = $True
}
}
}
104 changes: 0 additions & 104 deletions PSYaml.psd1

This file was deleted.

Loading

0 comments on commit 4a00d16

Please sign in to comment.