forked from WinRb/winrm-fs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
winrm-fs.gemspec
39 lines (32 loc) · 1.2 KB
/
winrm-fs.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
# frozen_string_literal: true
require 'date'
version = File.read(File.expand_path('VERSION', __dir__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'winrm-fs'
s.version = version
s.date = Date.today.to_s
s.author = ['Shawn Neal', 'Matt Wrock']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://github.com/WinRb/winrm-fs'
s.summary = 'WinRM File System'
s.description = <<-EOF
Ruby library for file system operations via 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 = ['rwinrmcp']
s.required_ruby_version = '>= 2.5.0'
s.add_runtime_dependency 'erubi', '>= 1.7'
s.add_runtime_dependency 'logging', ['>= 1.6.1', '< 3.0']
s.add_runtime_dependency 'rubyzip', '~> 2.0'
s.add_runtime_dependency 'winrm', '~> 2.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake', '>= 10.3', '< 13'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rubocop', '~> 1.26.0'
end