From c825de00295f976c486a9a181084ccacff283d9b Mon Sep 17 00:00:00 2001 From: Philippe Weber Date: Mon, 5 Sep 2016 06:12:03 +0200 Subject: [PATCH] add plain codec to mirror the fact that it is bundled in logstash --- logstash-devutils.gemspec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/logstash-devutils.gemspec b/logstash-devutils.gemspec index 2af97ae..141195a 100644 --- a/logstash-devutils.gemspec +++ b/logstash-devutils.gemspec @@ -37,6 +37,9 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency "minitar" # GPL2|Ruby License spec.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0" + # Plain codec is required for `bundle exec rspec` in plugins gem as it is input/output default codec (declared in logstash-core/{in,out}puts/base.rb) + spec.add_runtime_dependency "logstash-codec-plain" + # Should be removed as soon as the plugins are using insist by their # own, and not relying on being required by the spec helper. # (some plugins does it, some use insist throw spec_helper)