Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

41,365

Downloads of v 2.21.1:

9,152

Last Update:

08 Mar 2021

Package Maintainer(s):

Software Author(s):

  • PicklesDoc and contributors

Tags:

SpecificationByExample BDD SpecFlow Gherkin Cucumber SpecByEx LivingDocumentation Documentation

Pickles - The Open Source Living Documentation Generator

  • 1
  • 2
  • 3

2.21.1 | Updated: 08 Mar 2021

Downloads:

41,365

Downloads of v 2.21.1:

9,152

Software Author(s):

  • PicklesDoc and contributors

Pickles - The Open Source Living Documentation Generator 2.21.1

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Pickles - The Open Source Living Documentation Generator, run the following command from the command line or from PowerShell:

>

To upgrade Pickles - The Open Source Living Documentation Generator, run the following command from the command line or from PowerShell:

>

To uninstall Pickles - The Open Source Living Documentation Generator, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade pickles -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade pickles -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install pickles
  win_chocolatey:
    name: pickles
    version: '2.21.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'pickles' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.21.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller pickles
{
    Name     = "pickles"
    Version  = "2.21.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'pickles':
  ensure   => '2.21.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 08 Mar 2021.

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
  • Markdown: a simple output 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

tools\Autofac.dll
md5: 9C02BBD8D2606B9D981F2DB98BFCAB54 | sha1: C577A19567AB2DEF1DC0D49C1A6C72568E721AB9 | sha256: 128A9AFD89BD2E98D6941C00C3349B35E1C13F714A6C46109801D11DF3D75E57 | sha512: 52BACA0E0E7AFB791F95DD1A7ED5DE58DA71A68495ACF12C5076F1F1E3BDF6681AF4C846EAF2F682CBAEA5B939F4E3080E8B99A98458255F25BB1A59273F2DA9
tools\ClosedXML.dll
md5: ECACCF48C6B7534C050BE80A8CDFB0B9 | sha1: DD8D80D1DBD0420F7E7489BF31875BA1B938AE25 | sha256: 2E10C6F7535AF4F3E4AAEB891259C1B5ED921076C147B5005DF653ADFCF0B3A9 | sha512: 666166020917F83C5C790212542661FEBC391C207532579938BE22B04F43F9234044F69FDD37E73890BE782A12A9831F2F5712D54E9AEAD1BF694B863B9FD66E
tools\DocumentFormat.OpenXml.dll
md5: 8BF2D98EB3CEA4E624FBFF8E6AEC7C8F | sha1: 8604A515B29A6DB99230E5D72E6EF0924AFBBFEC | sha256: 40F293A772B3017814557BFB6FFD0077C7B81DC4FDC1CAA7498DB64C38DCC25F | sha512: 8CA3882076D50C24926A179FF87C5708040A46AEE33B5EDAD392BEF9D357BF803837F47FA6C73178EBF9C0AC189DAD79CE777FB76170E8CB91818EAE458540AE
tools\FeatureSwitcher.dll
md5: 87C7E94393317CFD6A72FFB96AA6D69F | sha1: 9FF4A4733D2925FC2CA1B74FC9448410C69FB56B | sha256: 637979879D1BA63BBB9DFBEF7D68822892C40543F2B61133709574F902D78A76 | sha512: 2668E2EFB4AEA9FA44A40D8D7E7192B967215F9215A13307E5BC174AFD0CC13A9666819DBE9435C1B4A58670C7948FF47775C5581F6319AF7F3728F271D6889F
tools\Gherkin.dll
md5: 999C6BC2D2CE7565A861394B01B3B3A9 | sha1: 251E4AE6ED3707B6F91C05982135735D4117B973 | sha256: E44DFDBCBA8B343E9E506DE567F9F3BD236F80112B6078A07B1498DF838F90E1 | sha512: A003137E67B28ECE5E32B7A5FAD3C20395717469C0EB044D7C273D18F99C3EF01CF3CA675EDD0A730A4127F18833F7215CC033DABFD0294C347FDB07278C59D1
tools\Jint.dll
md5: E0F990882B2C743EA13AEB79476DEC1B | sha1: 07908FC55B93349C7C69E1BC69DAC384AD8876B9 | sha256: 897CC6D3BC67C7259D3BAE2D9246F6195474B51848490B595E2CD1AC15CF7A66 | sha512: 4A1CA286092D571C22E2C962526493308541CBCE2DC7AB680B8C2140DB9C3DAE6972F85C105423B547490D2DA43375A999E62E6519B64F7851F24E28991B793B
tools\LICENSE.txt
Apache License

Version 2.0, January 2004

http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:

You must give any other recipients of the Work or Derivative Works a copy of this License; and

You must cause any modified files to carry prominent notices stating that You changed the files; and

You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and

If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS


Pickles contains code of SpecFlow (http://specflow.org/). That code is licensed under these terms:

SpecFlow Licence (New BSD License)

Copyright (c) 2009, TechTalk

Disclaimer:
 * The initial codebase of Specflow was written by TechTalk employees. 
   No 3rd party code was included.
 * No code of customer projects was used to create this project.
 * TechTalk had the full rights to publish the initial codebase.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
 * Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
 * Neither the name of the SpecFlow project nor the
   names of its contributors may be used to endorse or promote products
   derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL TECHTALK OR CONTRIBUTORS  BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
tools\MarkdownDeep.dll
md5: 8CBBD216E99B1D4D9304231235FF8C59 | sha1: CFE5C3A8BD9F2A3B814E7DFF271CD3620A04B299 | sha256: C44C392D40A05C5D1356B7F90171318BC03C766F15DE97E08E7F115D10159C87 | sha512: C7E38E07270CFB4DC66DD839D696D51CB3B4241959AD63EC391DD74ECD2C9437E8C9B4AA0F3F4A905BB3D906660597E4F142D3F34BB15E1A228B6341FA9449D7
tools\NDesk.Options.dll
md5: DA56F1211F7DEC41913719B608C95424 | sha1: 1314D264C8E8DBACAE4512710C92875D61957750 | sha256: 800C0AE0F2ACC15BE2C89528FE78CEA7400799D44FF14CB5A1251371F20C8982 | sha512: 9E671CF6199EBE9093AA29D3A4186D6F406E1C23C5EFB18D1CC4AE07AD32D0F945B10F180249ACEEE1B9B555C3504CDEAE67699CB3F2DFE7E78C8BB1EC676A8C
tools\Newtonsoft.Json.dll
md5: 5AFDA7C7D4F7085E744C2E7599279DB3 | sha1: 3A833EB7C6BE203F16799D7B7CCD8B8C9D439261 | sha256: F58C374FFCAAE4E36D740D90FBF7FE70D0ABB7328CD9AF3A0A7B70803E994BA4 | sha512: 7CBBBEF742F56AF80F1012D7DA86FE5375AC05813045756FB45D0691C36EF13C069361457500BA4200157D5EE7922FD118BF4C0635E5192E3F8C6183FD580944
tools\NLog.dll
md5: AA0FC18AD19CEE41578C1DD2E4B1B75C | sha1: 894ACC2ECD0C86CAE06BCF8C68F920700843311D | sha256: CA20AB8E9F53229B229CACE3FAE5A5CFCE6E3EA8C9CCFDB3394EFD5666B018B0 | sha512: 4E9B045732B486F85871C3BA5FED871338433EDB35C7E5CAB7DDF4E7A29FD419761FC4C5BD23FCE8EAE9F9D707795C62B5034B3B9A121B96B4ED50A5543BD5E2
tools\pickles.exe
md5: 2E6795B15B7D08FDAEE09D81FC0602E8 | sha1: F72A0EB5AFB8AC8D9AEB00D6E80D168B039A8EE7 | sha256: 45BFF157BABC1150A79C7BB3D2CBFF7CA8BEF4D1A920E6B958FD5205192E4D73 | sha512: 76BA96FA988F897F6EAF79AC1534A95332994593AFBF56F961C542623167513C8D3820F9A4B070144040265E85EEB07C2A05F3EA9C27FCF0390E6E0ACA30F2FD
tools\PicklesDoc.Pickles.DocumentationBuilders.Cucumber.dll
md5: F59709260A76B9BFBEF27C74D804DCDC | sha1: 7704290488436A7971F38EDDE2F983D2AF71EB09 | sha256: 1143856E3B3B36CDAB0394B28AC1AFBEF7E57B523616B3019F1ACE36E051AFD6 | sha512: 7AA2B53E66AA7E31CFA20AC86BB422597E5A7439B2DBBFC596CE5D3C031D3B78A37FB36BF405BEA029A9BADD83673D5FB503C7D3063B2C75E38B4C5B02B636FB
tools\PicklesDoc.Pickles.DocumentationBuilders.Dhtml.dll
md5: 3105134366521C8673567A60BFD470C0 | sha1: 464C84E3A6E31C45150408B15B07D49CE04C334A | sha256: 04983A3469AE74A02252DE43A12BB7E849E6E3022AAE9CB664911B014101D643 | sha512: 68FA981A5ECB7FC03453334C267D0785F7E1C11A331A20DA84749AC87D669E43F4A25161837133FCDC8083C85A5D89F6268E85725B2B000BEA497014F27AE657
tools\PicklesDoc.Pickles.DocumentationBuilders.Excel.dll
md5: DC950179ED518543DF40EB4B12BC535A | sha1: 3A503A71A5230CAE016FF87A85D8393150CCBBA2 | sha256: CA8ACDDF35F9606FF41D86515983779F506F113B15D867E4EA70F49ED27EEC68 | sha512: 2D3FC833F600186F9A268E66301C3037AAB430FF13AD5DD23A3BC3F3B375D836C2F87B97D9020F8D52011DA098D23EE1011EAADA5D78E69C266B64D44E237F94
tools\PicklesDoc.Pickles.DocumentationBuilders.Html.dll
md5: 439339F2120F4EAF21F9F7A746F4618C | sha1: C0BB8AB5CB92B88B5EEDB98A747D23DEE4922463 | sha256: 0DA02FCBCBA70FDE1CB5DA18AB5E26F8AF57D1943A083FBBD72235F2915AE167 | sha512: B22CD724FA9F0F94EDDC1C4B19AAD0915F9B415B8DCBAAFE4725E91A3BFFB946A17455E22B47261649DA3FFB04F11D0B70A3819B963EEE9B442811CB891980BF
tools\PicklesDoc.Pickles.DocumentationBuilders.Json.dll
md5: A7E495DCAA4445573721E0AC3981EA6D | sha1: 938B845979248D7C3273C158042F55CA7617805C | sha256: 64634EEC0826FFAAE8BFF66ED7C4DE26A51AC3C6C4CB2E6355D0FC620274E674 | sha512: CAA016672258E1FD0F3388A83D7296294F3D1461F490A6B4328A342D43FB55F83F8EECEEF83EC501D4BD24C43356094459FEC323057B2E6673DA39F08D2B523C
tools\PicklesDoc.Pickles.DocumentationBuilders.Markdown.dll
md5: E976910C42431BC9FCF9255F03D4CBEF | sha1: C0438AE46CD53AB163C9745875D65CF0219CFC34 | sha256: A373C09A7A68C4AA752280D3714FE3171AF5A4D4F7F049863DC3218E63B96609 | sha512: AFC7AD70BB2AEE6001842203927842E0EF6E9103C512F1E279E2BED1E0631EEFB3D369E54018F4BA4DD8786EF8AB2473654D8062537CC9DDE1A7229B66416A96
tools\PicklesDoc.Pickles.DocumentationBuilders.Word.dll
md5: 7C30700762E18096312A1D56B900D81B | sha1: 5991AB2233B1C7F01F7AE7F0C50FD3B91EEAA2A7 | sha256: 928E9D0411D87B04B2FE1591CCF4ED128B2986C6D099B648053B79CCF13C63C2 | sha512: D9A215D834533FDEAE32DD12DEB6E50A47661D0E8208AAE3183B7BD23C7569C0CA1872693EA2DD18077E0F4406667138946F4A27C55A16A46CFA1616EF0913A3
tools\PicklesDoc.Pickles.Library.dll
md5: A5035BACDBEA0330135079A7411F3DB2 | sha1: 6FE3C6D4FA3CD16BFB04EE5FF03CAC06C42E3D04 | sha256: 41A2B3CF29DD6B706F2F9B5EE6B257DE9D6394EA42CB31282EE92AC19CAAA590 | sha512: 06688C05118304FE7A48E009BD248D4444D18875F5431D0DF7D0A86D24D0BDCFD35F7FB24C56C99502385F82030193158B04100F6D296CE41FFD4212724C4549
tools\PicklesDoc.Pickles.ObjectModel.dll
md5: FD8E74BF63490AE7DA5673728C0CD6EA | sha1: CEC588B98A9E08DF5A9D5D0AC7E58F4AE84EA644 | sha256: 216D5929231AA0955F966C737102F70FC6E2556A9435B157DDC09153831D7424 | sha512: EAEFFD74512991E30633B8249A904CE107D00702AB56227BBE793D34788B50AD1B5B3BC8C7945030619C78D27A63D69D65E1112D3309B597E565CDA4D03C455C
tools\PicklesDoc.Pickles.TestFrameworks.dll
md5: 7384FFF6AC3F39AF2375CE4C4EA0401F | sha1: 36CF6F9B70E1BA57A8BE500BB22BC2F0077935D9 | sha256: A043AA2A5BCF4C556ED703025515DB4B7603FEE1129D73950FF8F64C2D578B0D | sha512: B4CA8589085F8B5D71FEDDDD21EC21B77E909301A6552FF7309838724778D2461CC3B7A5AFB649F58F1D30B73D43A9933DC73697F3361D290E123DD9AE413DFF
tools\Strike.Jint.dll
md5: 512B102E9DE55235FA56D6D796EB280E | sha1: 50EE4D230B198472A7D6416CE78DDB576439153F | sha256: C7A7EE1BC20CEF26D26DDA222FEA2A179197575DCDE9C2BEE9E0085B3798CBC8 | sha512: A016E40B7EBD4A05522084BAD7005D7627B7606E6DE8783BCF3A09F1ACC0D4E8C9DA110B825503ABDEF4A875CD823E86D4EA5C37103017BAD65667F521200BCE
tools\System.IO.Abstractions.dll
md5: 0FBFC69113DEE5346374EB23916375FC | sha1: 9D274345E9E11D4EC7D14AD8327AC425B16DADCE | sha256: 59D237F7C63D5D339C2A49E5C4785E86CA09188C453356AC27385BA141237F0B | sha512: 1E8C549D86CC8EDCDD79B5AA78DA278330E17D169ADA6103150E9B190D32AB7DD4D8400D7426030C4AE8E5651948097D970266903F6E53AFAEA56E1FEEECA8E9
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
This package is published by the Pickles project itself. The binaries are identical to other
package types published by the project, for example the nuget.org packages or the releases
on the GitHub project page.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Pickles - The Open Source Living Documentation Generator 2.21.0 1896 Tuesday, July 14, 2020 Approved
Pickles - The Open Source Living Documentation Generator 2.20.1 5033 Thursday, October 18, 2018 Approved
Pickles - The Open Source Living Documentation Generator 2.20.0 332 Tuesday, October 9, 2018 Approved
Pickles - The Open Source Living Documentation Generator 2.19.0 565 Friday, July 20, 2018 Approved
Pickles - The Open Source Living Documentation Generator 2.18.2 837 Saturday, April 28, 2018 Approved
Pickles - The Open Source Living Documentation Generator 2.18.1 372 Friday, April 20, 2018 Approved
Pickles - The Open Source Living Documentation Generator 2.18.0 571 Friday, February 2, 2018 Approved
Pickles - The Open Source Living Documentation Generator 2.17.0 644 Thursday, November 30, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.16.2 803 Sunday, August 13, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.16.1 401 Monday, August 7, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.16.0 722 Tuesday, June 6, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.15.0 978 Thursday, March 9, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.14.0 453 Friday, February 24, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.13.0 461 Friday, February 10, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.12.0 475 Thursday, January 26, 2017 Approved
Pickles - The Open Source Living Documentation Generator 2.11.1 553 Friday, December 16, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.11.0 462 Monday, December 5, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.10.0 608 Saturday, October 22, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.9.0 572 Friday, October 7, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.8.3 485 Wednesday, September 28, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.8.2 698 Thursday, August 18, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.8.1 582 Friday, July 29, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.8.0 543 Wednesday, June 29, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.7.0 405 Tuesday, June 14, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.6.3 497 Tuesday, May 24, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.6.2 454 Wednesday, May 11, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.6.1 445 Tuesday, May 10, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.6.0 563 Tuesday, April 12, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.5.0 509 Monday, March 21, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.4.1 534 Tuesday, March 1, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.4.0 484 Friday, February 26, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.3.3 87 Thursday, March 11, 2021 Approved
Pickles - The Open Source Living Documentation Generator 2.3.2 94 Thursday, March 11, 2021 Approved
Pickles - The Open Source Living Documentation Generator 2.3.0 549 Wednesday, January 27, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.2.1 515 Monday, January 25, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.2.0 454 Friday, January 15, 2016 Approved
Pickles - The Open Source Living Documentation Generator 2.1.0 462 Wednesday, December 30, 2015 Approved
Pickles - The Open Source Living Documentation Generator 2.0.4 498 Sunday, December 27, 2015 Approved
Pickles - The Open Source Living Documentation Generator 2.0.3 462 Wednesday, December 23, 2015 Approved
Pickles - The Open Source Living Documentation Generator 2.0.2 577 Saturday, November 21, 2015 Approved
Pickles - The Open Source Living Documentation Generator 2.0.1 465 Friday, November 20, 2015 Approved
Pickles - The Open Source Living Documentation Generator 2.0.0 446 Tuesday, November 3, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.2.3 484 Tuesday, October 6, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.2.2 451 Thursday, September 24, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.2.1 582 Friday, August 14, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.2.0 442 Tuesday, July 28, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.1.0 526 Tuesday, May 12, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.0.1 486 Tuesday, March 31, 2015 Approved
Pickles - The Open Source Living Documentation Generator 1.0.0 673 Monday, December 15, 2014 Approved
Pickles - The Open Source Living Documentation Generator 0.20.0 505 Thursday, December 11, 2014 Approved
Pickles - The Open Source Living Documentation Generator 0.19.0 518 Friday, November 28, 2014 Approved

This package has no dependencies.

Discussion for the Pickles - The Open Source Living Documentation Generator Package

Ground Rules:

  • This discussion is only about Pickles - The Open Source Living Documentation Generator and the Pickles - The Open Source Living Documentation Generator package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Pickles - The Open Source Living Documentation Generator, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus