mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
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:
parent
10bef6cc29
commit
92655105b4
2 changed files with 7 additions and 7 deletions
2
Gemfile
2
Gemfile
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue