-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathfluent-logger.gemspec
More file actions
31 lines (26 loc) · 1.23 KB
/
fluent-logger.gemspec
File metadata and controls
31 lines (26 loc) · 1.23 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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'fluent/logger/version'
Gem::Specification.new do |gem|
version_file = "lib/fluent/logger/version.rb"
version = Fluent::Logger::VERSION
gem.name = %q{fluent-logger}
gem.version = version
# gem.platform = Gem::Platform::RUBY
gem.authors = ["Sadayuki Furuhashi"]
gem.email = %q{frsyuki@gmail.com}
gem.homepage = %q{https://github.com/fluent/fluent-logger-ruby}
gem.description = %q{fluent logger for ruby}
gem.summary = gem.description
gem.metadata['changelog_uri'] = "https://github.com/fluent/fluent-logger-ruby/blob/master/ChangeLog"
gem.metadata['source_code_uri'] = "https://github.com/fluent/fluent-logger-ruby"
gem.metadata['bug_tracker_uri'] = "https://github.com/fluent/fluent-logger-ruby/issues"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.license = "Apache-2.0"
gem.add_dependency "msgpack", ">= 1.0.0", "< 2"
# logger gem that isn't default gems as of Ruby 3.5
gem.add_dependency "logger", "~> 1.6"
end