mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 20:27:23 -04:00
Updated the help message of Rakefile to list the test:install-core and test:core tasks. Fixes #6863
23 lines
680 B
Ruby
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
|