12345678910111213141516171819202122232425 |
- # frozen_string_literal: true
- # sharable_constant_value: literal
- Gem::Specification.new do |spec|
- spec.name = '8291_scanner'
- spec.version = '1.0.2'
- spec.summary = "connects to the Winbox API of Mikrotik's RouterOS and tries to read the operating system version"
- spec.description = "This tool connects to the Winbox API of Mikrotik's RouterOS and tries to read the operating system version."
- spec.authors = ['Marek Küthe']
- spec.email = 'm.k@mk16.de'
- spec.files = %w[lib/8291_scanner/winbox_connection.rb lib/8291_scanner/errors.rb]
- spec.executables = %w[8291_scanner]
- spec.extra_rdoc_files = %w[LICENSE README.md]
- spec.homepage = 'https://codeberg.org/mark22k/8291_scanner'
- spec.license = 'GPL-3.0-or-later'
- spec.metadata = { 'source_code_uri' => 'https://codeberg.org/mark22k/8291_scanner',
- 'bug_tracker_uri' => 'https://codeberg.org/mark22k/8291_scanner/issues',
- 'rubygems_mfa_required' => 'true' }
- spec.required_ruby_version = '>= 3.1'
- end
|