Created
August 18, 2010 15:01
-
-
Save nusco/535018 to your computer and use it in GitHub Desktop.
Spell: Class Macro
This file contains hidden or 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
# ================== | |
# Spell: Class Macro | |
# ================== | |
# Use a class method in a class definition. | |
class C; end | |
class << C | |
def my_macro(arg) | |
"my_macro(#{arg}) called" | |
end | |
end | |
class C | |
my_macro :x # => "my_macro(x) called" | |
end | |
# For more information: http://www.pragprog.com/titles/ppmetr/metaprogramming-ruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment