forked from brentm5/knife-chef-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknife-chef-inventory.gemspec
29 lines (22 loc) · 988 Bytes
/
knife-chef-inventory.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "knife-chef-inventory/version"
Gem::Specification.new do |s|
s.name = "knife-chef-inventory"
s.version = Knife::ChefInventory::VERSION
s.platform = Gem::Platform::RUBY
s.authors = "Brent Montague"
s.email = "[email protected]"
s.homepage = "https://github.com/brentm5/knife-chef-inventory"
s.summary = "Chef Knife plugin to help cleanup outdated cookbooks"
s.description = "A knife plugin to see cookbooks that can be deleted"
s.license = "Apache License, v2.0"
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
s.required_ruby_version = "~> 2.3"
s.add_dependency "chef", "~> 12.11"
s.add_development_dependency "bundler", "~> 1.6"
s.add_development_dependency "github_changelog_generator", "~> 1.13"
s.add_development_dependency "rake", "~> 11.1"
s.add_development_dependency "rubocop", "~> 0.49"
end