On May 22, 4:27 pm, Bryan Larsen <
bryan.lar...@gmail.com> wrote:
> Does it work if you remove the "HoboExtend" wrapper? By doing that
> you are defining in a different namespace. This works if you do an
> "include" or "extend" elsewhere to pull it into the proper class.
>
> But with ruby's open classes, you can just do a
>
> module Hobo
> class << self
> def find_by_search ...
>
> or
>
> def Hobo.find_by_search
> ...
> end
>
> cheers,
> Bryan
>