Sha256: fa71398b1924a48a62b627fd05d16e37ace1e4ab31ba3d3ef6be88c1595c1475

Contents?: true

Size: 472 Bytes

Versions: 2

Compression:

Stored size: 472 Bytes

Contents

require "awesome_print"
AwesomePrint.pry!

begin
  require "hirb"
  require "hirb-unicode"
  extend Hirb::Console
rescue LoadError => e
end

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 'f', 'finish'
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

2 entries across 2 versions & 1 rubygems

Version Path
bearonrails-0.1.1 templates/.pryrc
bearonrails-0.1.0 templates/.pryrc