Created
August 19, 2009 15:42
-
-
Save hone/170411 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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