Skip to content

Instantly share code, notes, and snippets.

@nusco
Created August 18, 2010 15:01
Show Gist options
  • Save nusco/535018 to your computer and use it in GitHub Desktop.
Save nusco/535018 to your computer and use it in GitHub Desktop.
Spell: Class Macro
# ==================
# 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