File: mixlib-authentication.gemspec

package info (click to toggle)
ruby-mixlib-authentication 3.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 256 kB
  • sloc: ruby: 1,099; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 552 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$:.unshift(File.dirname(__FILE__) + "/lib")
require "mixlib/authentication/version"

Gem::Specification.new do |s|
  s.name = "mixlib-authentication"
  s.version = Mixlib::Authentication::VERSION
  s.summary = "Mixes in simple per-request authentication"
  s.description = s.summary
  s.license = "Apache-2.0"
  s.author = "Chef Software, Inc."
  s.email = "info@chef.io"
  s.homepage = "https://github.com/chef/mixlib-authentication"
  s.required_ruby_version = ">= 2.4"

  s.files = %w{LICENSE} + Dir.glob("lib/**/*")
  s.require_paths = ["lib"]
end