Skip to content

Instantly share code, notes, and snippets.

@salvianoo
Created August 11, 2015 15:35
Show Gist options
  • Save salvianoo/8e467733c3aa629927e4 to your computer and use it in GitHub Desktop.
Save salvianoo/8e467733c3aa629927e4 to your computer and use it in GitHub Desktop.
module Foo
def bar
'bar'
end
end
class User
include Foo
extend Foo
end
puts User.bar #=> 'bar'
puts User.new.bar #=> 'bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment