Module: PierConsoleDetective::IrbLogger
- Defined in:
- lib/pier_console_detective/irb.rb
Instance Method Summary collapse
Instance Method Details
#evaluate(*args, **kw) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/pier_console_detective/irb.rb', line 3 def evaluate(*args, **kw) input = args.first.chomp PierConsoleDetective::Utils.log_command(input) output = super(*args, **kw) PierConsoleDetective::Utils.log_command_output(input, output) output end |