mirror of
https://github.com/elastic/logstash.git
synced 2025-04-22 05:37:21 -04:00
31 lines
1,013 B
Ruby
31 lines
1,013 B
Ruby
# -*- 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.license = "Apache License (2.0)"
|
|
|
|
gem.files = %w{
|
|
lib/logstash-event.rb
|
|
lib/logstash/event.rb
|
|
lib/logstash/namespace.rb
|
|
lib/logstash/time.rb
|
|
lib/logstash/version.rb
|
|
spec/event.rb
|
|
LICENSE
|
|
}
|
|
|
|
gem.test_files = []
|
|
gem.name = "logstash-event"
|
|
gem.require_paths = ["lib"]
|
|
gem.version = LOGSTASH_VERSION
|
|
|
|
gem.add_development_dependency "rspec"
|
|
gem.add_development_dependency "guard"
|
|
gem.add_development_dependency "guard-rspec"
|
|
gem.add_development_dependency "insist", "0.0.8"
|
|
end
|