8291_scanner.gemspec 1014 B

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