Skip to content

Instantly share code, notes, and snippets.

@modsognir
Created August 27, 2009 05:56
Show Gist options
  • Save modsognir/176115 to your computer and use it in GitHub Desktop.
Save modsognir/176115 to your computer and use it in GitHub Desktop.
class Test
%w{one two three}.each do |p|
define_method("#{p}?") { self.wat == p }
end
def wat
"two"
end
end
t = Test.new
t.one?
=> false
t.two?
=>true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment