Skip to content

Instantly share code, notes, and snippets.

@teamon
Created June 5, 2013 15:16
Show Gist options
  • Save teamon/5714649 to your computer and use it in GitHub Desktop.
Save teamon/5714649 to your computer and use it in GitHub Desktop.
Yell + Awesome Print
~ λ irb -r logger -r awesome_print -r yell
irb(main):001:0> Yell::Logger.send(:include, AwesomePrint::Logger)
=> Yell::Logger
irb(main):002:0> Yell::Logger.new(STDOUT).ap [1,2,3]
2013-06-05T17:15:35+02:00 [DEBUG] 27891 : [
[0] 1,
[1] 2,
[2] 3
]
=> true
irb(main):003:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment