Gem::Specification.new do |s| s.name = 'logstash-output-mongodb_upsert_custom' s.version = '0.2.0' s.licenses = ['Apache-2.0'] s.summary = 'Plugin to write to mongo db.' s.description = 'This plugin is to write the logstash input to given mongo db.' s.homepage = 'http://www.elastic.co/guide/en/logstash/current/index.html' s.authors = ['jijk'] s.email = 'ravi.shah@softwareag.com' s.require_paths = ['lib'] # Files s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT'] # Tests s.test_files = s.files.grep(%r{^(test|spec|features)/}) # Special flag to let us know this is actually a logstash plugin s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" } # Gem dependencies s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0" s.add_runtime_dependency "logstash-codec-plain" s.add_development_dependency "logstash-devutils" end