Skip to content

Instantly share code, notes, and snippets.

@phs
Created October 6, 2010 23:55
Show Gist options
  • Save phs/614319 to your computer and use it in GitHub Desktop.
Save phs/614319 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
module Mixin
def self.included(mod)
mod.extend ClassMethods
end
module ClassMethods
def acts_as_foo
puts "I'm a foo!"
end
end
end
class Mixer
include Mixin
acts_as_foo
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment