forked from reidmorrison/rails_semantic_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rails_semantic_logger.gemspec
26 lines (24 loc) · 1.15 KB
/
rails_semantic_logger.gemspec
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
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "rails_semantic_logger/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "rails_semantic_logger"
s.version = RailsSemanticLogger::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Reid Morrison"]
s.homepage = "https://logger.rocketjob.io"
s.summary = "Feature rich logging framework that replaces the Rails logger."
s.files = Dir["lib/**/*", "LICENSE.txt", "Rakefile", "README.md"]
s.license = "Apache-2.0"
s.required_ruby_version = ">= 2.5"
s.add_dependency "rack"
s.add_dependency "railties", ">= 5.1"
s.add_dependency "semantic_logger", "~> 4.13"
s.metadata = {
"bug_tracker_uri" => "https://github.com/reidmorrison/rails_semantic_logger/issues",
"documentation_uri" => "https://logger.rocketjob.io",
"source_code_uri" => "https://github.com/reidmorrison/rails_semantic_logger/tree/#{RailsSemanticLogger::VERSION}",
"rubygems_mfa_required" => "true"
}
end