lib/ronin/ui/console.rb in ronin-1.0.0.pre4 vs lib/ronin/ui/console.rb in ronin-1.0.0.rc1
- old
+ new
@@ -27,10 +27,14 @@
require 'ripl/multi_line'
require 'ripl/auto_indent'
module Ronin
module UI
+ #
+ # An interactive Ruby {Console} using
+ # [Ripl](https://github.com/cldwalker/ripl).
+ #
class Console
# The history file for the Console session
HISTORY_FILE = File.join(Config::PATH,'console.log')
@@ -65,10 +69,10 @@
def Console.color=(mode)
@@color = mode
end
#
- # Determines whenter one-line errors will be printed, instead of full
+ # Determines whether one-line errors will be printed, instead of full
# backtraces.
#
# @return [Boolean]
# The Console short-errors setting.
#