Skip to content

Instantly share code, notes, and snippets.

Created August 18, 2015 21:28
Show Gist options
  • Save anonymous/397e54bb563181530b67 to your computer and use it in GitHub Desktop.
Save anonymous/397e54bb563181530b67 to your computer and use it in GitHub Desktop.
module Foo
def hello
puts "hello"
end
end
class Bar
extend Foo
hello() #=> Should call Foo's hello() method
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment