-
Notifications
You must be signed in to change notification settings - Fork 117
/
winrm.gemspec
49 lines (43 loc) · 1.66 KB
/
winrm.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require 'date'
require File.expand_path('lib/winrm/version', __dir__)
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'winrm'
s.version = WinRM::VERSION
s.date = Date.today.to_s
s.author = ['Dan Wanek', 'Paul Morton', 'Matt Wrock', 'Shawn Neal']
s.email = [
'dan.wanek@gmail.com',
'paul@themortonsonline.com',
'matt@mattwrock.com',
'sneal@sneal.net'
]
s.homepage = 'https://github.com/WinRb/WinRM'
s.summary = 'Ruby library for Windows Remote Management'
s.description = <<-EOF
Ruby library for Windows Remote Management
EOF
s.license = 'Apache-2.0'
s.files = Dir.glob('{bin,lib}/**/*') + %w[LICENSE README.md]
s.require_path = 'lib'
s.rdoc_options = %w[-x test/ -x examples/]
s.extra_rdoc_files = %w[README.md LICENSE]
s.bindir = 'bin'
s.executables = ['rwinrm']
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'builder', '>= 2.1.2'
s.add_runtime_dependency 'erubi', '~> 1.8'
s.add_runtime_dependency 'gssapi', '~> 1.2'
s.add_runtime_dependency 'gyoku', '~> 1.0'
s.add_runtime_dependency 'httpclient', '~> 2.2', '>= 2.2.0.2'
s.add_runtime_dependency 'logging', ['>= 1.6.1', '< 3.0']
s.add_runtime_dependency 'nori', '~> 2.0', '>= 2.7.1'
s.add_runtime_dependency 'rexml', '~> 3.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake', '>= 10.3', '< 13'
s.add_development_dependency 'rb-readline'
s.add_development_dependency 'rspec', '~> 3.2'
s.add_development_dependency 'rubocop', '~> 1.26.0'
s.add_runtime_dependency 'rubyntlm', '~> 0.6.0', '>= 0.6.3'
s.metadata['rubygems_mfa_required'] = 'true'
end