From: Yukihiro Matsumoto Date: 2007-01-26T00:55:18+09:00 Subject: Re: Class & modifiers modifiers Hi, In message "Re: Class & modifiers modifiers" on Thu, 25 Jan 2007 23:58:09 +0900, Miquel writes: |module A | | protected | | def b_method() | return 'foo->A' | end | |end | |class B | include A | | def b_method() | return 'foo->B' | end | |end | |Is B's method b_method() protected? Is it public? What the hell is this |method (;-) ) ? public. I don't recommend to override protected method though. matz.