Skip to content

Instantly share code, notes, and snippets.

@skoba
Last active December 16, 2015 10:19
Show Gist options
  • Save skoba/5419506 to your computer and use it in GitHub Desktop.
Save skoba/5419506 to your computer and use it in GitHub Desktop.
For peaceful family life
class Husband
attre_reader :wife
def initialize(wife)
@wife = wife
end
def love_wife?
true
end
def method_misssing(*args, &block)
if block_given?
yield unless wife.present?
end
end
end
@mee935
Copy link

mee935 commented Apr 19, 2013

wwwwww

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment