forked from driskell/log-courier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog-courier.gemspec.tmpl
25 lines (24 loc) · 956 Bytes
/
log-courier.gemspec.tmpl
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
Gem::Specification.new do |gem|
gem.name = 'log-courier'
gem.version = '<VERSION>'
gem.description = 'Log Courier library'
gem.summary = 'Receive events from Log Courier and transmit between LogStash instances'
gem.homepage = 'https://github.com/driskell/log-courier'
gem.authors = ['Jason Woods']
gem.email = ['devel@jasonwoods.me.uk']
gem.licenses = ['Apache']
gem.rubyforge_project = 'nowarning'
gem.require_paths = ['lib']
gem.files = %w(
lib/log-courier/client.rb
lib/log-courier/client_tcp.rb
lib/log-courier/event_queue.rb
lib/log-courier/server.rb
lib/log-courier/server_tcp.rb
lib/log-courier/server_zmq.rb
lib/log-courier/zmq_qpoll.rb
)
gem.add_runtime_dependency 'cabin', '~> 0.6'
gem.add_runtime_dependency 'ffi-rzmq', '~> 2.0'
gem.add_runtime_dependency 'multi_json', '~> 1.10'
end