Method: Bundler::CLI::Console#get_constant

Defined in:
lib/bundler/cli/console.rb

#get_constant(name) ⇒ Object

[View source]

33
34
35
36
37
38
39
40
# File 'lib/bundler/cli/console.rb', line 33

def get_constant(name)
  const_name = {
    "pry" => :Pry,
    "ripl" => :Ripl,
    "irb" => :IRB,
  }[name]
  Object.const_get(const_name)
end