File: mixlib-config.gemspec

package info (click to toggle)
ruby-mixlib-config 3.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 284 kB
  • sloc: ruby: 1,631; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 633 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-

$:.unshift(File.dirname(__FILE__) + "/lib")
require "mixlib/config/version"

Gem::Specification.new do |s|
  s.name = "mixlib-config"
  s.version = Mixlib::Config::VERSION

  s.authors = ["Chef Software, Inc."]
  s.email = "info@chef.io"
  s.files = %w{LICENSE NOTICE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
  s.homepage = "https://github.com/chef/mixlib-config"
  s.require_paths = ["lib"]
  s.required_ruby_version = ">= 2.4"
  s.summary = "A class based configuration library"
  s.description = s.summary
  s.license = "Apache-2.0"

  s.add_dependency "tomlrb"
end