Sha256: 8df18e0f90b5793d50a33b38a2b44234c8c2153f58f67989e3d18f1e2ebf45cd
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'smb/client/version' Gem::Specification.new do |spec| spec.name = 'smb-client' spec.version = SMB::Client::VERSION spec.authors = ['Ralf Herzog'] spec.email = ['ralf@rherzog.de'] spec.summary = 'SMB Client wrapper for smbclient executable' spec.description = 'SMB Client wrapper for smbclient executable' spec.homepage = 'https://github.com/NetcomKassel/smb-client' spec.license = 'MIT' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the # 'allowed_push_host' to allow pushing to a single host or delete this section # to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' else raise 'RubyGems 2.0 or newer is required to protect against ' \ 'public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'minitest', '~> 5.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'simplecov' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
smb-client-0.1.4 | smb-client.gemspec |
smb-client-0.1.3 | smb-client.gemspec |
smb-client-0.1.2 | smb-client.gemspec |