# frozen_string_literal: true namespace :praxis do desc 'Run interactive pry/irb console' task :console do # Use irb if available (which it almost always is). require 'irb' Rake::Task['praxis:environment'].invoke # Keep IRB.setup from complaining about bad ARGV options old_argv = ARGV.dup ARGV.clear IRB.setup nil ARGV.concat(old_argv) # Allow reentrant IRB IRB.conf[:MAIN_CONTEXT] = IRB::Irb.new.context require 'irb/ext/multi-irb' # Remove main object from prompt (its stringify is not useful) nickname = File.basename(::Praxis::Application.instance.root) IRB.conf[:PROMPT][:DEFAULT] = { PROMPT_I: "%N(#{nickname}):%03n:%i> ", PROMPT_N: "%N(#{nickname}):%03n:%i> ", PROMPT_S: "%N(#{nickname}):%03n:%i%l ", PROMPT_C: "%N(#{nickname}):%03n:%i* " } # Set the IRB main object. IRB.irb(nil, Praxis::Application.instance) end end