Skip to content

Instantly share code, notes, and snippets.

@ksss
Created July 4, 2014 03:02
Show Gist options
  • Save ksss/4a2ad686de2efa90da60 to your computer and use it in GitHub Desktop.
Save ksss/4a2ad686de2efa90da60 to your computer and use it in GitHub Desktop.
Can not prepend after include
module Mod
def foo
:orig
end
end
class Cla
include Mod
end
module Pre
def foo
:prepend
end
end
module Mod
prepend Pre
end
p Cla.new.foo #=> :orig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment