File: mixlib-log.gemspec

package info (click to toggle)
ruby-mixlib-log 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: ruby: 662; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 600 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$:.unshift File.expand_path("lib", __dir__)
require "mixlib/log/version"

Gem::Specification.new do |gem|
  gem.name = "mixlib-log"
  gem.version = Mixlib::Log::VERSION
  gem.summary = "A gem that provides a simple mixin for log functionality"
  gem.email = "info@chef.io"
  gem.homepage = "https://github.com/chef/mixlib-log"
  gem.license = "Apache-2.0"
  gem.authors = ["Chef Software, Inc."]
  gem.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
  gem.require_paths = ["lib"]
  gem.required_ruby_version = ">= 2.7"

  gem.add_dependency "ffi"
end