logstash/Rakefile
Wainer dos Santos Moschetta ebbbab1fbf Rakefile: update help with test tasks.
Updated the help message of Rakefile to list the
test:install-core and test:core tasks.

Fixes #6863
2017-03-31 14:01:29 -04:00

23 lines
680 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 Logstasch core
`rake test:core` to run Logstasch core tests
`rake vendor:clean` clean vendored dependencies used for Logstash development
HELP
end