method

run

ruby latest stable - Class: Bundler::CLI::Console

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

run()
public

No documentation available.

# File lib/bundler/cli/console.rb, line 11
    def run
      Bundler::SharedHelpers.major_deprecation 2, "bundle console will be replaced "                             "by `bin/console` generated by `bundle gem <name>`"

      group ? Bundler.require(:default, *(group.split.map!(&:to_sym))) : Bundler.require
      ARGV.clear

      console = get_console(Bundler.settings[:console] || "irb")
      console.start
    end