File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/pry-0.10.4/lib/pry/commands/

Viewing File: gem_cd.rb

class Pry
  class Command::GemCd < Pry::ClassCommand
    match 'gem-cd'
    group 'Gems'
    description "Change working directory to specified gem's directory."
    command_options :argument_required => true

    banner <<-'BANNER'
      Usage: gem-cd GEM_NAME

      Change the current working directory to that in which the given gem is
      installed.
    BANNER

    def process(gem)
      Dir.chdir(Rubygem.spec(gem).full_gem_path)
      output.puts(Dir.pwd)
    end

    def complete(str)
      Rubygem.complete(str)
    end
  end

  Pry::Commands.add_command(Pry::Command::GemCd)
end