Module: Utils::IRB

Defined in:
lib/utils/irb.rb

Defined Under Namespace

Modules: Regexp, Service, Shell, String

Class Method Summary collapse

Class Method Details

.configureObject



385
386
387
388
389
390
391
392
393
394
395
396
397
# File 'lib/utils/irb.rb', line 385

def self.configure
  ::IRB.conf[:SAVE_HISTORY] = 1000
  if ::IRB.conf[:PROMPT]
    ::IRB.conf[:PROMPT][:CUSTOM] = {
      :PROMPT_I =>  ">> ",
      :PROMPT_N =>  ">> ",
      :PROMPT_S =>  "%l> ",
      :PROMPT_C =>  "+> ",
      :RETURN   =>  " # => %s\n"
    }
    ::IRB.conf[:PROMPT_MODE] = :CUSTOM
  end
end