Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created July 16, 2010 07:55
Show Gist options
  • Select an option

  • Save workmad3/478082 to your computer and use it in GitHub Desktop.

Select an option

Save workmad3/478082 to your computer and use it in GitHub Desktop.
module Foo
attr_accessor :bar
def baz
self.bar = "test"
end
end
class Buzz
extend(Foo)
end
Buzz.baz
puts Buzz.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment