How to generate documentation from Cucumber / Gherkin? [closed] - documentation

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I like the idea of relishapp.com, i.e. that you have Cucumber / Gherkin features and you generate "living docs" from them. However, the Relish SaaS is awful.
I'm looking for an alternative. Ideally self-hosted Open Source like Sphinx, but I'm not completely opposed to SaaS solutions. Especially Sphinx would be great as I could combine it with other docs and use readthedocs.org for deployment.
So the question is: What would be the easiest way to generate HTML docs from Gherkin features?

There is one more option Cukedoctor https://github.com/rmpestano/cukedoctor
You can host within company network using SimpleHTTPServer ( http://2ality.com/2014/06/simple-http-server.html )

I've used yard-cucumber to do that before. It worked out pretty well.

Related

Test Cases Management Tool / Application / Software [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Please suggest some good tool / software / application for managing test cases for an internet software product. Requirements:
should not be too expensive
should preferably be on an online platform (but desktop app too is okay!)
should support custom fields to classify / categorize test cases according to various dimensions like product module, persona etc.
It can be something that you use(d) in your organization or something you know of.
We are using informUp which is a test case management. we are using it as hosed solution but you can install the server on your site. it is simple but yet powerfull and allow customzied the fields. we are using it for bugs as well but you can use it only for tests cases. we are very satisfied with it

Pydoc equivalent for Common Lisp [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've been programming in common lisp for a while now, and I like how there's so much handy documentation on the language online; the problem is that I'm often offline and can't access it when I need it most.
Is there a PyDoc equivalent for common lisp (or even just man pages for the language) that I can download and use in the shell?
Cheers in advance.
You can download the CLHS and install it in various ways.
http://www.cliki.net/CLHS
that's an old question…
edit: as referenced on the Cookbook, we can read the HyperSpecs offline with either Dash (MacOS), Zeal (GNU/Linux) or Velocity (Windows).
we could ask or add it on devdocs: https://devdocs.io/
and take the data of the CL Ultra Spec: website, data
and of course browse the built-in documentation with Emacs (C-h, see the menu).

Standards for commandline options documentation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I often hack out some Thor, Rake, Bash or even PHP commandline tools. And I want to document the command-line-arguments and variations in a consistent way.
Is there an official, or recommended standard on this documentation?
Like when an option is optional[--foo=bar], or when an option can be one n-values ("yes|no"), etceteras.
I'd rather not come up with my own standard, when there is an official (POSIX?) standard or guide that already lists the do's and don't for documenting tools and applications on CLI's.
I'm not sure what output format you have in mind, but why not use the man-page style? It seems a nice fit for commandline tools.

Tool for JSON API Documentation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there a tool or an easy way to generate/maintain documentation of a rich RESTful JSON API?
I also would want to publish and maintain (as executable documentation) it, something like what relishapp provides. An example.
The application is Restful Ruby on Rails 3 application, tested using cucumber and R-Spec controller tests.
You say you have Cucumber tests already - they are your documentation. They may just need some work to be readable.
For output, you can use Cucumber's built-in HTML formatter.

Load testing tool that can send PUT/DELETE methods [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am finding load testing tool that can send PUT/DELETE requests.
Neither ApacheBench nor JMeter supports these methods.
After several hours' googling, I found SoapUI that looks good.
Do you have any other recommendation?
Command line tool like ApacheBench will be better for me.
The Grinder is a decent load testing framework that also supports PUT and DELETE.
Jmeter supports put and delete methods as of of versions > to 2.5 ( didn't Check for others)