Sha256: 60598ba05e8ec7e65fd59f932e3770cec67ff8677d87f779e2879df8a557bc90

Contents?: true

Size: 1.71 KB

Versions: 1

Compression:

Stored size: 1.71 KB

Contents

# -*- mode: ruby -*-
#
# Copyright (C) 2015-2018  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library.  If not, see <http://www.gnu.org/licenses/>.

Gem::Specification.new do |spec|
  spec.name = "fluent-plugin-groonga-query-log"
  spec.version = "1.0.1"
  spec.authors = ["Kouhei Sutou"]
  spec.email = ["kou@clear-code.com"]
  spec.summary = "Fluentd plugin to parse Groonga's query log."
  spec.description = "You can detect slow query in real time by using this plugin."
  spec.homepage = "https://github.com/groonga/fluent-plugin-groonga-query-log"
  spec.license = "LGPLv3"

  spec.files = ["README.md", "Gemfile", "#{spec.name}.gemspec"]
  spec.files += [".yardopts"]
  spec.files += Dir.glob("lib/**/*.rb")
  spec.files += Dir.glob("sample/**/*")
  spec.files += Dir.glob("doc/text/**/*")
  spec.test_files += Dir.glob("test/**/*")
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency("fluentd")
  spec.add_runtime_dependency("groonga-query-log", ">= 1.2.9")

  spec.add_development_dependency("rake")
  spec.add_development_dependency("bundler")
  spec.add_development_dependency("packnga")
  spec.add_development_dependency("test-unit")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-groonga-query-log-1.0.1 fluent-plugin-groonga-query-log.gemspec