Sha256: 0ede3ffebe9eaa92efef556234193a2f03d73940b4d50838610cf9221678a8c7
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true # # ronin-support-web - A web support library for ronin-rb. # # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com) # # ronin-support-web 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-web 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-web. If not, see <https://www.gnu.org/licenses/>. # require 'ronin/support/web/xml' require 'ronin/support/web/html' require 'ronin/support/web/mixin' require 'ronin/support/web/version' module Ronin module Support # # Top-level namespace for `ronin-support-web`. # # ## Example # # require 'ronin/support/web' # include Ronin::Support::Web # # html_parse "<html>...</html>" # # => #<Nokogiri::HTML::Document: ...> # module Web include Mixin end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ronin-support-web-0.1.0.1 | lib/ronin/support/web.rb |
ronin-support-web-0.1.0 | lib/ronin/support/web.rb |
ronin-support-web-0.1.0.rc1 | lib/ronin/support/web.rb |