# -*- encoding: utf-8 -*- Gem::Specification.new do |gem| gem.name = "fluent-plugin-onlineuser" gem.version = "0.0.1" gem.authors = ["Yuyang Lan"] gem.email = ["lanyuyang@gree.net"] gem.summary = %q{Online Users Counter} gem.description = %q{Fluentd plugin to count online users. It's based on Redis and the sorted set data type.} gem.homepage = "https://github.com/lanyuyang/fluent-plugin-onlineuser" 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.has_rdoc = false gem.add_development_dependency "rake" gem.add_development_dependency "fluentd" gem.add_development_dependency "redis" gem.add_runtime_dependency "fluentd" gem.add_runtime_dependency "redis" end