Add a dummy logstash.gemspec file to catch old plugins installations

ammend the logstash.gemspec descriptions

Fixes #2677
This commit is contained in:
Pere Urbon-Bayes 2015-02-25 13:04:12 +01:00 committed by Jordan Sissel
parent 92655105b4
commit 647042c3f9

17
logstash.gemspec Normal file
View file

@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/logstash/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jordan Sissel", "Pete Fritchman", "Elasticsearch"]
gem.email = ["jls@semicomplete.com", "petef@databits.net", "info@elasticsearch.com"]
gem.description = %q{scalable log and event management (search, archive, pipeline)}
gem.summary = %q{logstash - log and event management}
gem.homepage = "http://logstash.net/"
gem.license = "Apache License (2.0)"
gem.files = Dir.glob(["lib/**/*.rb", "locales/*"])
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "logstash"
gem.require_paths = ["lib"]
gem.version = LOGSTASH_VERSION
end