-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfluent-plugin-sort.gemspec
More file actions
41 lines (37 loc) · 1.58 KB
/
fluent-plugin-sort.gemspec
File metadata and controls
41 lines (37 loc) · 1.58 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- mode: ruby; coding: utf-8 -*-
#
# Copyright (C) 2014 Project Hatohol
#
# 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 2.1 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-sort"
spec.version = "1.0.1"
spec.authors = ["Project Hatohol"]
spec.email = ["project.hatohol@gmail.com"]
spec.summary = "A Fluentd plugin that sorts buffered messages"
spec.description =
"Fluentd doesn't guarantee message order but you may keep message order."
spec.homepage = "https://github.com/project-hatohol/fluent-plugin-sort"
spec.license = "LGPL-2.1+"
spec.files = ["README.md", "Gemfile", "#{spec.name}.gemspec"]
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_development_dependency("rake")
spec.add_development_dependency("bundler")
spec.add_development_dependency("test-unit")
end