logstash/Rakefile
Josh Soref c6cd247ec3 Multiple spelling corrections (#9782)
* spelling: actually
* spelling: already
* spelling: concurrency
* spelling: constructor
* spelling: destinations
* spelling: different
* spelling: elasticsearch
* spelling: encoding
* spelling: error
* spelling: explicitly
* spelling: failings
* spelling: falsey
* spelling: guarantees
* spelling: having
* spelling: implementation
* spelling: logstash
* spelling: module
* spelling: multiple
* spelling: omitted
* spelling: overridden
* spelling: pipeline
* spelling: raspberry
* spelling: receive
* spelling: recommended
* spelling: registered
* spelling: registering
* spelling: shutdown
* spelling: signal
* spelling: specified
* spelling: successful
* spelling: successfully
* spelling: valuefied
* spelling: vector
2018-07-04 10:41:10 +01:00

23 lines
678 B
Ruby

# encoding: utf-8
$: << File.join(File.dirname(__FILE__), "lib")
$: << File.join(File.dirname(__FILE__), "logstash-core/lib")
task "default" => "help"
task "help" do
puts <<HELP
What do you want to do?
Packaging?
`rake artifact:tar` to build a deployable .tar.gz
`rake artifact:rpm` to build an rpm
`rake artifact:deb` to build an deb
Developing?
`rake bootstrap` installs any dependencies for doing Logstash development
`rake test:install-core` installs any dependencies for testing Logstash core
`rake test:core` to run Logstash core tests
`rake vendor:clean` clean vendored dependencies used for Logstash development
HELP
end