Sha256: 2e4faf86a450d82bbd67e57ee7e721d70c4c5d1086eda6ed2000d6a133148f99

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

#
# ronin-web - A collection of useful web helper methods and commands.
#
# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-web is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ronin-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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ronin-web.  If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/core/cli/ruby_shell'

module Ronin
  module Web
    class CLI
      #
      # The interactive Ruby shell for {Ronin::Web}.
      #
      class RubyShell < Core::CLI::RubyShell

        #
        # Initializes the `ronin-web` Ruby shell.
        #
        # @param [String] name
        #   The name of the IRB shell.
        #
        # @param [Object] context
        #   Custom context to launch IRB from within.
        #
        # @param [Hash{Symbol => Object}] kwargs
        #   Additional keyword arguments for
        #   `Ronin::Core::CLI::RubyShell#initialize`.
        #
        def initialize(name: 'ronin-web', context: Web, **kwargs)
          super(name: name, context: context, **kwargs)
        end

      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ronin-web-1.0.0 lib/ronin/web/cli/ruby_shell.rb
ronin-web-1.0.0.beta4 lib/ronin/web/cli/ruby_shell.rb
ronin-web-1.0.0.beta3 lib/ronin/web/cli/ruby_shell.rb
ronin-web-1.0.0.beta2 lib/ronin/web/cli/ruby_shell.rb