Sha256: 7470f402c1750c28970e74eece1cd65c4f7090eddcb7cff102763ee4227b7614
Contents?: true
Size: 688 Bytes
Versions: 1
Compression:
Stored size: 688 Bytes
Contents
$:.unshift(File.dirname(__FILE__) + "/lib") require "mixlib/cli/version" Gem::Specification.new do |s| s.name = "mixlib-cli" s.version = Mixlib::CLI::VERSION s.extra_rdoc_files = ["README.md", "LICENSE", "NOTICE"] s.summary = "A simple mixin for CLI interfaces, including option parsing" s.description = s.summary s.author = "Chef Software, Inc." s.email = "info@chef.io" s.homepage = "https://www.chef.io" s.license = "Apache-2.0" s.required_ruby_version = ">= 2.5" 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mixlib-cli-2.0.0 | mixlib-cli.gemspec |