Create a logstash-core gem and made the necessary adoptions to logstash so test can he also run

fix the logstash-core gemspec gem.name

Fixes #2677
This commit is contained in:
Pere Urbon-Bayes 2015-02-24 13:52:09 +01:00 committed by Jordan Sissel
parent 10bef6cc29
commit 92655105b4
2 changed files with 7 additions and 7 deletions

View file

@ -2,4 +2,4 @@
# If you modify this file manually all comments and formatting will be lost.
source "https://rubygems.org"
gemspec :name => "logstash"
gemspec :name => "logstash-core"

View file

@ -2,16 +2,16 @@
require File.expand_path('../lib/logstash/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jordan Sissel", "Pete Fritchman"]
gem.email = ["jls@semicomplete.com", "petef@databits.net"]
gem.description = %q{scalable log and event management (search, archive, pipeline)}
gem.summary = %q{logstash - log and event management}
gem.authors = ["Jordan Sissel", "Pete Fritchman", "Elasticsearch"]
gem.email = ["jls@semicomplete.com", "petef@databits.net", "info@elasticsearch.com"]
gem.description = %q{The core components of logstash, the scalable log and event management tool}
gem.summary = %q{logstash-core - The core components of logstash}
gem.homepage = "http://logstash.net/"
gem.license = "Apache License (2.0)"
gem.files = `git ls-files`.split($\)
gem.files = Dir.glob(["lib/**/*.rb", "locales/*"])
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "logstash"
gem.name = "logstash-core"
gem.require_paths = ["lib"]
gem.version = LOGSTASH_VERSION