-
Notifications
You must be signed in to change notification settings - Fork 82
/
ruby_smb.gemspec
48 lines (42 loc) · 1.54 KB
/
ruby_smb.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_smb/version'
Gem::Specification.new do |spec|
spec.name = 'ruby_smb'
spec.version = RubySMB::VERSION
spec.authors = [
'Metasploit Hackers',
'David Maloney',
'James Lee',
'Dev Mohanty',
'Christophe De La Fuente',
'Spencer McIntyre'
]
spec.email = ['[email protected]']
spec.summary = 'A pure Ruby implementation of the SMB Protocol Family'
spec.description = ''
spec.homepage = 'https://github.com/rapid7/ruby_smb'
spec.license = 'BSD-3-clause'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
if RUBY_PLATFORM =~ /java/
spec.add_development_dependency 'kramdown'
spec.platform = Gem::Platform::JAVA
else
spec.add_development_dependency 'redcarpet'
spec.platform = Gem::Platform::RUBY
end
spec.required_ruby_version = '>= 2.5'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'fivemat'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'yard'
spec.add_runtime_dependency 'rubyntlm', '>= 0.6.5'
spec.add_runtime_dependency 'windows_error', '>= 0.1.4'
spec.add_runtime_dependency 'bindata', '2.4.15'
spec.add_runtime_dependency 'openssl-ccm'
spec.add_runtime_dependency 'openssl-cmac'
end