-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfluent-plugin-websocket.gemspec
26 lines (23 loc) · 1.09 KB
/
fluent-plugin-websocket.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-websocket"
gem.version = "0.1.8"
gem.authors = ["Tetsu Izawa (@moccos)"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/moccos/fluent-plugin-websocket"
gem.summary = %q{Fluentd websocket output plugin}
gem.description = %q{Fluentd websocket output plugin which can output JSON string or MessagePack binary to the clients.}
gem.required_ruby_version = ">= 1.9.2"
gem.licenses = ["Apache License, Version 2.0"]
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rake"
gem.add_development_dependency "websocket-eventmachine-client"
gem.add_runtime_dependency "msgpack"
gem.add_runtime_dependency "yajl-ruby"
gem.add_runtime_dependency "fluentd"
gem.add_runtime_dependency "em-websocket"
end