Sha256: c4ae4930df675a2c20df3f55d56df1b1177e17bf1c3b169ecbfd82de6d79ee09
Contents?: true
Size: 995 Bytes
Versions: 2
Compression:
Stored size: 995 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "knife-winops/version" Gem::Specification.new do |s| s.name = "knife-winops" s.version = Knife::Windows::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Robbert-Jan Sperna Weiland"] s.email = ["rspernaweiland@schubergphilis.com"] s.license = "Apache-2.0" s.homepage = "https://github.com/RobbertJanSW/knife-winops" s.summary = %q{Plugin that adds functionality to Chef's Knife CLI for configuring/interacting with nodes running Microsoft Windows} s.description = s.summary s.required_ruby_version = ">= 1.9.1" s.add_dependency "winrm", "~> 2.1" s.add_dependency "winrm-elevated", "~> 1.0" s.add_development_dependency 'pry' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- spec/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
knife-winops-2.1.0 | knife-winops.gemspec |
knife-winops-2.0.0 | knife-winops.gemspec |