blob: 4f2b9e359382153608875ad392d4780a3afe0ad5 (
plain)
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://www.chef.io"
s.require_path = "lib"
s.files = %w{LICENSE README.md Gemfile Rakefile NOTICE} + Dir.glob("*.gemspec") +
Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
end
|