Sha256: 654cbc245837ef33f99001fd7504948e79d2e2e76303da82057eadf0f3d32fdc

Contents?: true

Size: 370 Bytes

Versions: 4

Compression:

Stored size: 370 Bytes

Contents

# frozen_string_literal: true

if defined?(PryByebug)
  Pry.commands.alias_command 'c', 'continue'
  Pry.commands.alias_command 's', 'step'
  Pry.commands.alias_command 'n', 'next'
  Pry.commands.alias_command 'trace', 'backtrace'
end

# Hit Enter to repeat last command
Pry::Commands.command /^$/, 'repeat last command' do
  _pry_.run_command Pry.history.to_a.last
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
require_bench-1.0.3 .pryrc
require_bench-1.0.2 .pryrc
rspec-stubbed_env-1.0.0 .pryrc
require_bench-1.0.1 .pryrc