Sha256: 024cf01ea7a4675b2f9d928f33b7d11f21996518d0b394f4ec06cf6780652719

Contents?: true

Size: 852 Bytes

Versions: 1

Compression:

Stored size: 852 Bytes

Contents

# -*- 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-onlineuser-0.0.1 fluent-plugin-onlineuser.gemspec