From: "Jesús Gabriel y Galán" Date: 2009-08-14T03:45:59+09:00 Subject: Re: skip_before_filter (Do I need a lesson in modules/mixins?) On Thu, Aug 13, 2009 at 8:40 PM, Cris Shupp wrote: > No it is not the fact that the method call is not within another method > call that is tripping me up.  It is that I cannot get it to work for me. > > Consider the following code: > #################################### > module Test > >  def self.include(base) >    base.extend(ClassMethods) >  end You have the same typo: it's self.included (note the final 'd'). Jesus.