
ruby-sequel - issue #274
Assocations dont't searches constants in same scope they are defined
What steps will reproduce the problem? See minimal example in patchfile
What is the expected output? What do you see instead? See error in patchfile
What version of the product are you using? On what operating system? sequel - Trunk debian - lenny
Please provide any additional information below. Sorry for short description but I think the patch should explain everything.
Comment #1
Posted on Jul 11, 2009 by Happy BearThis isn't a bug, this is how Sequel was designed. If you are using models inside modules, all associations need to include a :class or :class_name option specifying the full class name (including modules).
That being said, while this is a slight breakage of backwards compatibility, I think it makes sense. I'll use your patch as a starting point.
Comment #2
Posted on Jul 11, 2009 by Happy BearHere's a preliminary patch: http://pastie.org/542498
I haven't run it through my full test suite yet, but after I do I'll be committing it.
Comment #3
Posted on Jul 13, 2009 by Happy BearFixed: http://github.com/jeremyevans/sequel/commit/0ebe58ed686bd44273409b6c429c2d8c56f0f352 http://github.com/jeremyevans/sequel/commit/a0d069d0791608c5e68811c99a6595824b3c9a07
Basically the same as the original patch, but with the second patch to support anonymous classes on ruby 1.9.
Status: Fixed