mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
First stab at logstash-event gemspec
This commit is contained in:
parent
b0e0923057
commit
f4effdd6bb
2 changed files with 27 additions and 0 deletions
3
lib/logstash-event.rb
Normal file
3
lib/logstash-event.rb
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
require "logstash/event"
|
||||||
|
require "logstash/version"
|
||||||
|
|
24
logstash-event.gemspec
Normal file
24
logstash-event.gemspec
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
require File.expand_path('../lib/logstash/version', __FILE__)
|
||||||
|
|
||||||
|
Gem::Specification.new do |gem|
|
||||||
|
gem.authors = ["Jordan Sissel"]
|
||||||
|
gem.email = ["jls@semicomplete.com"]
|
||||||
|
gem.description = %q{Library that contains the classes required to create LogStash events}
|
||||||
|
gem.summary = %q{Library that contains the classes required to create LogStash events}
|
||||||
|
gem.homepage = "https://github.com/logstash/logstash"
|
||||||
|
|
||||||
|
gem.files = %w{
|
||||||
|
lib/logstash-event.rb
|
||||||
|
lib/logstash/event.rb
|
||||||
|
lib/logstash/namespace.rb
|
||||||
|
lib/logstash/time.rb
|
||||||
|
lib/logstash/version.rb
|
||||||
|
LICENSE
|
||||||
|
}
|
||||||
|
|
||||||
|
gem.test_files = []
|
||||||
|
gem.name = "logstash-event"
|
||||||
|
gem.require_paths = ["lib"]
|
||||||
|
gem.version = LOGSTASH_VERSION
|
||||||
|
end
|
Loading…
Add table
Add a link
Reference in a new issue