mirror of
https://github.com/elastic/logstash.git
synced 2025-04-20 04:37:18 -04:00
* 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
23 lines
678 B
Ruby
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
|