From: Cris Shupp Date: 2009-08-14T04:55:36+09:00 Subject: Re: skip_before_filter (Do I need a lesson in modules/mixins?) Thanks everyone (especially Michael and Jesus)! I missed the missing 'd'. I put it in and it works! And of course the 'd' is in the original code... module ActionController #:nodoc: module Filters #:nodoc: def self.included(base) base.class_eval do extend ClassMethods include ActionController::Filters::InstanceMethods end end pharrington wrote: > On Aug 13, 2:40�pm, Cris Shupp wrote: >> >> Tester:Class(NoMethodError) >> referenced 'skip_before_filter'. >> >> Thanks, >> >> Cris >> > > Then I'm confused as to what you're still confused about? Jesus > already pointed out the typo: you need > > > def self.included(base) > > versus -- Posted via http://www.ruby-forum.com/.