Sha256: 38dd0472f4e2107cf5eda86ab9e92c519dfbc485a2afd9819b199b49f6c58ba7
Contents?: true
Size: 590 Bytes
Versions: 15
Compression:
Stored size: 590 Bytes
Contents
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
Version data entries
15 entries across 15 versions & 7 rubygems