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

Version Path
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
chess_engine-0.0.2 vendor/bundle/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
chess_engine-0.0.1 vendor/bundle/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
alimentos-alu0100945645-0.1.0 vendor/bundle/ruby/2.3.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
alimentos-alu0100945645-1.0.0 vendor/bundle/ruby/2.3.0/gems/pry-0.12.2/lib/pry/commands/gem_cd.rb
pry-0.12.2-java lib/pry/commands/gem_cd.rb
pry-0.12.2 lib/pry/commands/gem_cd.rb
pry-0.12.1 lib/pry/commands/gem_cd.rb
pry-0.12.1-java lib/pry/commands/gem_cd.rb
pry-0.12.0 lib/pry/commands/gem_cd.rb
pry-0.12.0-java lib/pry/commands/gem_cd.rb