-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathsemantic_logger.gemspec
More file actions
28 lines (26 loc) · 1.48 KB
/
Copy pathsemantic_logger.gemspec
File metadata and controls
28 lines (26 loc) · 1.48 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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
# Maintain your gem's version:
require "semantic_logger/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "semantic_logger"
s.version = SemanticLogger::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Reid Morrison"]
s.homepage = "https://logger.rocketjob.io"
s.summary = "High-performance, asynchronous structured logging framework for Ruby & Rails."
s.description = "Semantic Logger is a high-performance, asynchronous structured logging framework for Ruby & Rails. " \
"It logs to multiple destinations via a background thread, preserving structured (semantic) payloads."
s.files = Dir["lib/**/*", "docs/*.md", "LICENSE.txt", "Rakefile", "README.md"]
s.license = "Apache-2.0"
s.required_ruby_version = ">= 3.2"
s.add_dependency "concurrent-ruby", "~> 1.0"
s.metadata = {
"bug_tracker_uri" => "https://github.com/reidmorrison/semantic_logger/issues",
"changelog_uri" => "https://github.com/reidmorrison/semantic_logger/blob/main/CHANGELOG.md",
"documentation_uri" => "https://logger.rocketjob.io",
"source_code_uri" => "https://github.com/reidmorrison/semantic_logger/tree/v#{SemanticLogger::VERSION}",
"rubygems_mfa_required" => "true"
}
end