1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/commands/gem_cd.rb
2012-11-14 01:50:13 -08:00

18 lines
459 B
Ruby

class Pry
Pry::Commands.create_command "gem-cd" do |gem|
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(gem_spec(gem).full_gem_path)
output.puts(Dir.pwd)
end
end
end