-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathknife-windows.gemspec
More file actions
25 lines (21 loc) · 905 Bytes
/
knife-windows.gemspec
File metadata and controls
25 lines (21 loc) · 905 Bytes
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
$:.push File.expand_path("lib", __dir__)
require "knife-windows/version"
Gem::Specification.new do |s|
s.name = "knife-windows"
s.version = Knife::Windows::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Seth Chisamore"]
s.email = ["schisamo@chef.io"]
s.license = "Apache-2.0"
s.homepage = "https://github.com/chef/knife-windows"
s.summary = %q{Plugin that adds functionality to Chef Infra's Knife CLI for configuring/interacting with nodes running Microsoft Windows}
s.description = s.summary
s.required_ruby_version = ">= 3.1"
s.add_dependency "chef", ">= 18.2"
s.add_dependency "chef-winrm", "~> 2.3"
s.add_dependency "chef-winrm-elevated", "~> 1.2"
s.add_development_dependency "pry"
s.files = %w{LICENSE} + Dir.glob("{spec,lib}/**/*")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
end