Skip to content

Instantly share code, notes, and snippets.

@TikiTDO
Last active August 29, 2015 14:07
Show Gist options
  • Save TikiTDO/77d09f58b6a72efb471c to your computer and use it in GitHub Desktop.
Save TikiTDO/77d09f58b6a72efb471c to your computer and use it in GitHub Desktop.
Logs the code in a block, and the result it produced
require 'sourcify'
class Binding
def log_op(&block)
result = nil
source = block.to_source strip_enclosure: true
result = self.eval source
puts "Command: #{source} Returned: #{result}"
result
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment