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.
- Loading branch information
Showing
26 changed files
with
312 additions
and
91 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 |
---|---|---|
|
@@ -58,6 +58,7 @@ reports/ | |
merged/ | ||
test/ | ||
Documentation-*/ | ||
Output/ | ||
|
||
#nCrunch files | ||
*.crunchproject.local.xml | ||
|
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
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 |
---|---|---|
@@ -1,12 +1,34 @@ | ||
@echo off | ||
set "picklesVersion=0.20.0" | ||
|
||
cls | ||
|
||
|
||
cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.3\tools\" | ||
|
||
".\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\..\..\..\packages" "-ExcludeVersion" | ||
|
||
cd ..\..\..\..\.. | ||
|
||
"packages\FAKE\tools\Fake.exe" build.fsx --envvar version 0.19.0 | ||
"packages\FAKE\tools\Fake.exe" nuget.fsx --envvar version 0.19.0 | ||
"packages\FAKE\tools\Fake.exe" chocolatey.fsx --envvar version 0.19.0 | ||
|
||
"packages\FAKE\tools\Fake.exe" build.fsx --envvar version %picklesVersion% | ||
"packages\FAKE\tools\Fake.exe" nuget.fsx --envvar version %picklesVersion% | ||
"packages\FAKE\tools\Fake.exe" chocolatey.fsx --envvar version %picklesVersion% | ||
|
||
call unzip.cmd %picklesVersion% | ||
|
||
FOR %%A IN (testRunnerCmd testRunnerMsBuild testRunnerPowerShell) DO ( | ||
call %%A.cmd %picklesVersion% | ||
if errorlevel 1 goto handleerror1orhigher | ||
) | ||
|
||
|
||
@ECHO all fine | ||
goto end | ||
|
||
:handleerror1orhigher | ||
|
||
@ECHO Something went wrong! | ||
goto end | ||
|
||
:end |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,24 +1,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>pickles</id> | ||
<title>Pickles - The Open Source Living Documentation Generator</title> | ||
<version>@build.number@</version> | ||
<authors>PicklesDoc and contributors</authors> | ||
<owners>Jeffrey Cameron, Dirk Rombauts</owners> | ||
<summary>A documentation generator for features written in the Gherkin language</summary> | ||
<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> | ||
<projectUrl>http://www.picklesdoc.com/</projectUrl> | ||
<tags>SpecificationByExample BDD SpecFlow Gherkin Cucumber SpecByEx LivingDocumentation Documentation </tags> | ||
<copyright></copyright> | ||
<licenseUrl>http://apache.org/licenses/LICENSE-2.0.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/picklesdoc/pickles/master/pickles.jpeg</iconUrl> | ||
</metadata> | ||
<files> | ||
<file src="pickles.exe" target="tools" /> | ||
<file src="chocolateyInstall.ps1" target="tools" /> | ||
<file src="version.ps1" target="tools" /> | ||
</files> | ||
<metadata> | ||
<id>pickles</id> | ||
<title>Pickles - The Open Source Living Documentation Generator</title> | ||
<version>@build.number@</version> | ||
<authors>PicklesDoc and contributors</authors> | ||
<owners>Jeffrey Cameron, Dirk Rombauts</owners> | ||
<summary>A documentation generator for features written in the Gherkin language</summary> | ||
<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 documentation 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. | ||
|
||
*Pickles* can produce output in different formats: | ||
|
||
- Static HTML: a set of HTML files with minimal JavaScript | ||
- Dynamic HTML: a JavaScript-rich single page app with integrated search | ||
- Word: Microsoft Word | ||
- Excel: Microsoft Excel | ||
- JSON: a custom JSON format | ||
|
||
Optionally, *Pickles* can **integrate test results**, so that your stakeholders know which scenarios pass validation. *Pickles* supports these test formats: | ||
|
||
- NUnit | ||
- MSTest | ||
- XUnit | ||
- SpecRun | ||
- Cucumber JSON | ||
</description> | ||
<projectUrl>http://www.picklesdoc.com/</projectUrl> | ||
<tags>SpecificationByExample BDD SpecFlow Gherkin Cucumber SpecByEx LivingDocumentation Documentation </tags> | ||
<copyright>Copyright © 2010-2012 Jeffrey Cameron, Copyright © 2013-present PicklesDoc and contributors</copyright> | ||
<licenseUrl>http://apache.org/licenses/LICENSE-2.0.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/picklesdoc/pickles/master/pickles.jpeg</iconUrl> | ||
</metadata> | ||
<files> | ||
<file src="pickles.exe" target="tools" /> | ||
</files> | ||
</package> | ||
|
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,44 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>picklesui</id> | ||
<title>Pickles UI - The Open Source Living Documentation Generator (GUI)</title> | ||
<version>@build.number@</version> | ||
<authors>PicklesDoc and contributors</authors> | ||
<owners>Jeffrey Cameron, Dirk Rombauts</owners> | ||
<summary>A documentation generator for features written in the Gherkin language</summary> | ||
<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*. | ||
|
||
This GUI version of Pickles provides an easy way to produce living documentation 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. | ||
|
||
*Pickles* can produce output in different formats: | ||
|
||
- Static HTML: a set of HTML files with minimal JavaScript | ||
- Dynamic HTML: a JavaScript-rich single page app with integrated search | ||
- Word: Microsoft Word | ||
- Excel: Microsoft Excel | ||
- JSON: a custom JSON format | ||
|
||
Optionally, *Pickles* can **integrate test results**, so that your stakeholders know which scenarios pass validation. *Pickles* supports these test formats: | ||
|
||
- NUnit | ||
- MSTest | ||
- XUnit | ||
- SpecRun | ||
- Cucumber JSON | ||
</description> | ||
<projectUrl>http://www.picklesdoc.com/</projectUrl> | ||
<tags>SpecificationByExample BDD SpecFlow Gherkin Cucumber SpecByEx LivingDocumentation Documentation </tags> | ||
<copyright>Copyright © 2010-2012 Jeffrey Cameron, Copyright © 2013-present PicklesDoc and contributors</copyright> | ||
<licenseUrl>http://apache.org/licenses/LICENSE-2.0.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/picklesdoc/pickles/master/pickles.jpeg</iconUrl> | ||
</metadata> | ||
<files> | ||
<file src="picklesui.exe" target="tools" /> | ||
<file src="picklesui.exe.gui" target="tools" /> | ||
<file src="NLog.config" target="tools" /> | ||
<file src="PicklesUI.exe.config" target="tools" /> | ||
</files> | ||
</package> | ||
|
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
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
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
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
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
Oops, something went wrong.