# File lib/pry/commands/gem_install.rb, line 22
    def process(gem)
      Rubygem.install(gem)
      output.puts "Gem `#{ text.green(gem) }` installed."
      require gem
    rescue LoadError
      require_path = gem.split('-').join('/')
      require require_path
    end