forked from x97mdr/pickles
-
Notifications
You must be signed in to change notification settings - Fork 164
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 #51 from marcushammarberg/master
Update .gitIgnore and and added the .NuSpec-file for PowerShell
- Loading branch information
Showing
2 changed files
with
20 additions
and
2 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 |
---|---|---|
|
@@ -59,5 +59,4 @@ Documentation-*/ | |
*.crunchsolution.local.xml | ||
|
||
#nuget stuff | ||
*.nupkg | ||
*.nuspec | ||
*.nupkg |
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,19 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>Pickles</id> | ||
<version>$version$</version> | ||
<title>Pickles - Gherkin Documentation Generator</title> | ||
<authors>Marcus Hammarberg</authors> | ||
<owners>Jeffrey Cameron</owners> | ||
<projectUrl>https://github.com/x97mdr/pickles</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Pickles is an open source living documentation generator that works on feature files written in the Gherkin language, popularized in tools like Cucumber and SpecFlow. Pickles can be incorporated into your build process to produce living documenation in a format that is more accessible to your clients. Gherkin language files are written in plain text and stored in your source folder. This can make them inaccessible to clients who may not know how to work with source control or who are not interested in seeing all of the source code, just the features.</description> | ||
<summary>A documentation generator for features written in the Gherkin language</summary> | ||
<copyright>Copyright © Jeffrey Cameron 2010-2011</copyright> | ||
</metadata> | ||
<files> | ||
<file src="bin\Release\*.dll" target="tools" /> | ||
<file src="init.ps1" target="tools\init.ps1" /> | ||
</files> | ||
</package> |