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

26 lines
577 B
Ruby
Raw Normal View History

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)
2012-11-14 08:35:12 +00:00
Dir.chdir(gem_spec(gem).full_gem_path)
output.puts(Dir.pwd)
end
2012-11-14 09:50:27 +00:00
def complete(str)
gem_complete(str)
end
end
Pry::Commands.add_command(Pry::Command::GemCd)
end