-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Widgets are broken #5
Comments
Note that the problem goes away if I either a) use the |
Whoops — definitely an oversight. Yeah, the triggering case was referring to an autoloaded widget by partially-qualified module path, and I actually never had a test case that did that. Now I do. 😄 (When you write Let me know if this works for you — if so, I'll cut 0.0.7 based on it. |
It works... mostly. The
I have seen the 'superclass mismatch' errors before, so this may be a separate issue. |
Oh, and I've been able to avoid the 'superclass mismatch' problem in the past by adding the following line to the top of every view file: require_dependency 'views/base' Just tried it, and it seems to work in this case too. |
Hmmm. I'll take a look and see what I can find — I haven't personally run into this problem, but I'll see if I can reproduce it. If you find a way to reproduce it even semi-reliably, definitely let me know; I am obviously extremely interested in stamping such things out. :) |
I just pushed a branch, |
Hmm, don't see the branch in your repo. Where is it pushed to? |
Oops — sorry about that. Fixed now. :) |
That branch doesn't really change things for me. I've been able to consistently reproduce the error. Would you prefer that info in a new issue or should I put it here? |
Sorry to hear that! By all means, if you can consistently reproduce it, file a new issue. Your bug report above was excellent in terms of thoroughness — that level of detail should be able to help me figure it out. The output of |
Oh, and BTW, sorry for the delay. I'm quite scrupulous about not working on OSS during my employer's time or while on their property, so during daytime business hours (PST), I'm unlikely to respond. |
Totally understand... and you're fixing things pretty fast anyway. Thanks again! |
Sorry, I think this was introduced during the fix of #3...
This line throws a 'No such file or directory' error when I try to render Widgets.
The file structure is:
app/views/foo/edit.html.rb
app/views/foo/form.rb
The error is:
It looks like fortitude is interpreting some of the file name (edit) as part of the directory structure.
The text was updated successfully, but these errors were encountered: