Sha256: fdf0bc84dfc3f01d203847259b60ad94372a93007782dfee040e199d6eaa4958
Contents?: true
Size: 848 Bytes
Versions: 3
Compression:
Stored size: 848 Bytes
Contents
# frozen_string_literal: true require "irb" require_relative "core" module Hanami module CLI module Repl # @since 2.0.0 # @api private class Irb < Core # @since 2.0.0 # @api private def start $stdout.sync = true ARGV.shift until ARGV.empty? TOPLEVEL_BINDING.eval("self").extend(context) # Initializes the IRB.conf; our own conf changes must be after this IRB.setup(nil) IRB.conf[:PROMPT][:HANAMI] = { AUTO_INDENT: true, PROMPT_I: "#{prompt}> ", PROMPT_N: "#{prompt}> ", PROMPT_S: "#{prompt}%l ", PROMPT_C: "#{prompt}* ", RETURN: "=> %s\n" } IRB.conf[:PROMPT_MODE] = :HANAMI IRB::Irb.new.run end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hanami-cli-2.2.1 | lib/hanami/cli/repl/irb.rb |
hanami-cli-2.2.0 | lib/hanami/cli/repl/irb.rb |
hanami-cli-2.2.0.rc1 | lib/hanami/cli/repl/irb.rb |