summaryrefslogtreecommitdiff
path: root/mixlib-log.gemspec
blob: fe418eb3578d481522266bf2c8fc071e417abd80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$:.unshift File.expand_path("../lib", __FILE__)
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://www.chef.io"
  gem.license = "Apache-2.0"
  gem.authors = ["Chef Software, Inc."]
  gem.extra_rdoc_files = ["README.md", "LICENSE", "NOTICE"]
  gem.files = Dir["lib/**/*"] + Dir["spec/**/*"] + ["Gemfile", "Rakefile", ".gemtest", "mixlib-log.gemspec"]
  gem.required_ruby_version = ">= 2.2"
end