mirror of
https://github.com/elastic/logstash.git
synced 2025-04-23 22:27:21 -04:00
**Motivation**: We have decided to rewrite the documentation generator to add more features to our documentation and to fix some outstanding bugs. This PR addresses the following problem: - Hard to add new features to the code base. - The code was tied with Logstash. - No easy way to publish the doc for a single plugin - The plugin author was not able to test their documentation changes - The reported errors were hard to understand. - No easy way to automate it. - the minimal requirement on base classes. Fixes #5720
8 lines
131 B
Bash
Executable file
8 lines
131 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
set -vx
|
|
|
|
bundle install
|
|
|
|
# Do any other automated setup that you need to do here
|