Skip to content

Instantly share code, notes, and snippets.

@hone
Created August 19, 2009 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hone/170411 to your computer and use it in GitHub Desktop.
Save hone/170411 to your computer and use it in GitHub Desktop.
class Test
def self.foo
puts 'hi'
end
def self.boo
puts 'world'
end
end
[:foo, :boo].each {|method_name| Test.send(method_name) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment