Sha256: 41b12973514bcbf92a519015f6437107c6299729a5cad2d6f16a2c6b16d3fa98
Contents?: true
Size: 932 Bytes
Versions: 3
Compression:
Stored size: 932 Bytes
Contents
# -*- encoding: utf-8 -*- require 'date' version = File.read(File.expand_path("../VERSION", __FILE__)).strip Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = 'winrm' s.version = version s.date = Date.today.to_s s.author = 'Dan Wanek' s.email = 'dan.wanek@gmail.com' s.homepage = "http://github.com/zenchild/WinRM" s.summary = 'Ruby library for Windows Remote Management' s.description = <<-EOF Ruby library for Windows Remote Management EOF s.files = `git ls-files`.split(/\n/) s.require_path = "lib" s.rdoc_options = %w(-x test/ -x examples/) s.extra_rdoc_files = %w(README COPYING.txt) s.required_ruby_version = '>= 1.9.0' s.add_runtime_dependency 'gssapi', '>= 0.1.5' s.add_runtime_dependency 'nokogiri' s.add_runtime_dependency 'httpclient' s.add_runtime_dependency 'rubyntlm' s.add_runtime_dependency 'uuid' s.add_runtime_dependency 'savon' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
winrm-1.0.0rc4 | winrm.gemspec |
winrm-1.0.0rc3 | winrm.gemspec |
winrm-1.0.0rc2 | winrm.gemspec |