mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -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
14 lines
340 B
Ruby
Executable file
14 lines
340 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require "bundler/setup"
|
|
require "logstash/docgen"
|
|
|
|
# You can add fixtures and/or initialization code here to make experimenting
|
|
# with your gem easier. You can also use a different console, if you like.
|
|
|
|
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
# require "pry"
|
|
# Pry.start
|
|
|
|
require "irb"
|
|
IRB.start
|