mirror of
https://github.com/elastic/logstash.git
synced 2025-04-23 06:08:19 -04:00
This tool allow to generate a logstash pack of plugin and it is required by #6168. This allow the developer to specify which gems it need to be included in the pack, it will also take care get the parent dependencies. ```ruby require "paquet" TARGET_DIRECTORY = File.join(File.dirname(__FILE__), "dependencies") Paquet::Task.new(TARGET_DIRECTORY) do pack "manticore" pack "gemoji" pack "logstash-output-elasticsearch" # Ignore some dependencies that the core will provide ignore "logstash-core-plugin-api" ignore "logstash-core" end ``` Fixes #6271
13 lines
589 B
Text
13 lines
589 B
Text
Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License");
|
||
you may not use this file except in compliance with the License.
|
||
You may obtain a copy of the License at
|
||
|
||
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
||
Unless required by applicable law or agreed to in writing, software
|
||
distributed under the License is distributed on an "AS IS" BASIS,
|
||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
See the License for the specific language governing permissions and
|
||
limitations under the License.
|