Skip to content

Instantly share code, notes, and snippets.

@duper
Created January 30, 2011 17:09
Show Gist options
  • Save duper/803023 to your computer and use it in GitHub Desktop.
Save duper/803023 to your computer and use it in GitHub Desktop.
irb(main):001:0> p {}.blank?
NoMethodError: undefined method `blank?' for nil:NilClass
from (irb):1
from /home/super/bin/irb:12:in `<main>'
irb(main):002:0> require'dmap/mixins/blank'
=> true
irb(main):003:0> p {}.blank?
=> true
irb(main):004:0> {}.blank?
NoMethodError: undefined method `blank?' for {}:Hash
from (irb):4
from /home/super/bin/irb:12:in `<main>'
irb(main):005:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment