pry--pry/lib/pry/commands/gem_cd.rb

27 lines
593 B
Ruby

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