From 798de1a7cf89d6386ccf5742f2d94faaa9b74c37 Mon Sep 17 00:00:00 2001 From: Postmodern Date: Wed, 27 Nov 2024 19:13:12 -0800 Subject: [PATCH] Added `ronin/support/software`. --- lib/ronin/support.rb | 1 + lib/ronin/support/software.rb | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 lib/ronin/support/software.rb diff --git a/lib/ronin/support.rb b/lib/ronin/support.rb index e755b03e..e616ce7f 100644 --- a/lib/ronin/support.rb +++ b/lib/ronin/support.rb @@ -25,6 +25,7 @@ require 'ronin/support/network' require 'ronin/support/path' require 'ronin/support/text' +require 'ronin/support/software' require 'ronin/support/version' module Ronin diff --git a/lib/ronin/support/software.rb b/lib/ronin/support/software.rb new file mode 100644 index 00000000..ba2fb048 --- /dev/null +++ b/lib/ronin/support/software.rb @@ -0,0 +1,20 @@ +# frozen_string_literal: true +# +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) +# +# ronin-support is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# ronin-support is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with ronin-support. If not, see . +# + +require_relative 'software/version' +require_relative 'software/version_range'