Skip to content

Instantly share code, notes, and snippets.

@asterite
Created January 28, 2015 19:20
Show Gist options
  • Save asterite/514b5da257318574b4fb to your computer and use it in GitHub Desktop.
Save asterite/514b5da257318574b4fb to your computer and use it in GitHub Desktop.
module Foo
macro included
def method_{{@type.name.downcase.id}}
puts "I'm {{@type}}"
end
end
end
class Bar
include Foo
end
Bar.new.method_bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment