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
357 changed files
with
34,054 additions
and
12,425 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = CRLF | ||
indent_style = space | ||
trim_trailing_whitespace = true | ||
indent_size = 4 | ||
|
||
[*.csproj] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.resx] | ||
indent_style = space | ||
indent_size = 2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
@echo off | ||
cls | ||
|
||
cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.2\tools\" | ||
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.18.2 | ||
"packages\FAKE\tools\Fake.exe" nuget.fsx --envvar version 0.18.2 | ||
"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 |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// include Fake lib | ||
#r @"packages\FAKE\tools\FakeLib.dll" | ||
open Fake | ||
|
||
// Properties | ||
let cmdDir = "./build/exe/" | ||
let deployDir = "./deploy/chocolatey/" | ||
let packagingDir = "./packaging/" | ||
let chocoDir = "./chocolatey/" | ||
|
||
// version info | ||
let version = environVar "version" // or retrieve from CI server | ||
|
||
Target "Clean" (fun _ -> | ||
CleanDirs [deployDir; packagingDir] | ||
) | ||
|
||
Target "CreatePackage" (fun _ -> | ||
CopyFiles packagingDir [chocoDir + "chocolateyInstall.ps1"; cmdDir + "Pickles.exe"; cmdDir + "NLog.config"] | ||
WriteFile (packagingDir + "version.ps1") [("$version = \"" + version + "\"")] | ||
NuGet (fun p -> | ||
{p with | ||
OutputPath = deployDir | ||
WorkingDir = packagingDir | ||
Version = version | ||
Publish = false }) | ||
(chocoDir + "Pickles.nuspec") | ||
) | ||
|
||
|
||
Target "Default" (fun _ -> | ||
trace ("Starting build of Pickles version " + version) | ||
DeleteDir packagingDir | ||
) | ||
|
||
|
||
// Dependencies | ||
"Clean" | ||
==> "CreatePackage" | ||
==> "Default" | ||
|
||
|
||
// start build | ||
RunTargetOrDefault "Default" | ||
|
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,12 @@ | ||
|
||
$packageName = "pickles" | ||
$toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition | ||
|
||
# Newer choco.exe will support passing the package's version number to this script; so this | ||
# can eventually be cleaned up and version.ps1 removed. | ||
Write-Debug "toolsPath is: $toolsPath" | ||
$versionFile = Join-Path $toolsPath "version.ps1" | ||
Import-Module $versionFile | ||
$url = "https://github.com/picklesdoc/pickles/releases/download/v$version/Pickles-exe-$version.zip" | ||
|
||
Install-ChocolateyZipPackage $packageName $url $toolsPath |
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,24 @@ | ||
<?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> | ||
</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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NuGet.CommandLine" version="2.8.2" /> | ||
<package id="NuGet.CommandLine" version="2.8.3" /> | ||
<package id="NUnit.Runners" version="2.6.3" /> | ||
</packages> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Weavers> | ||
<Costura/> | ||
|
||
</Weavers> |
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,11 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Autofac" version="2.6.3.862" targetFramework="net35" /> | ||
<package id="Costura.Fody" version="1.3.2.0" targetFramework="net35" developmentDependency="true" /> | ||
<package id="Fody" version="1.24.0" targetFramework="net35" developmentDependency="true" /> | ||
<package id="Costura.Fody" version="1.3.3.0" targetFramework="net35" developmentDependency="true" /> | ||
<package id="Fody" version="1.26.1" targetFramework="net35" developmentDependency="true" /> | ||
<package id="NDesk.Options" version="0.2.1" /> | ||
<package id="NLog" version="3.1.0.0" targetFramework="net35" /> | ||
<package id="NLog.Config" version="3.1.0.0" targetFramework="net35" /> | ||
<package id="NLog.Schema" version="3.1.0.0" targetFramework="net35" /> | ||
<package id="System.IO.Abstractions" version="1.4.0.86" targetFramework="net35" /> | ||
<package id="System.IO.Abstractions" version="1.4.0.92" targetFramework="net35" /> | ||
</packages> |
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,5 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Weavers> | ||
<Costura/> | ||
|
||
</Weavers> |
Oops, something went wrong.