module IRB

Public Class Methods

conf() click to toggle source
# File lib/easy_repl/repl.rb, line 6
def self.conf
  {
    LC_MESSAGES: Locale.new,
    SAVE_HISTORY: 100,
    HISTORY_FILE: EasyRepl.history_file || '.easyrepl_history',
    AT_EXIT: []
  }
end