forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogstash-event.gemspec
29 lines (25 loc) · 925 Bytes
/
logstash-event.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/logstash/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jordan Sissel"]
gem.email = ["[email protected]"]
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 "insist", "0.0.8"
end