Been encountering several (seemingly) related issues with Rails 2. Was
hoping someone has run into these things and found a suitable solution:
1) instance methods disappearing in view:
a. In the index action of ArticlesController, there is: @articles
@user.articles.find(....)...
b. with which in index.html.erb, i call render :partial =>
''articles/article'', :collection => @articles.
c. and the _article partial calls a method such as
"article.published?"
which is defined in the model file and verified by unit tests.
Yet I will consistently get a NoMethodError on that #published? method
beginning with the second request to that page. Also, the elements in
that collection don''t seem to be of the class Article as expected.
Curiously, the page works as desired if in the controller I do @article
= Article.find(...., :conditions => ["user_id = ?", @user.id]). And
since this is a development only issue, it led to the notion that it was
load-unload-reload issue related, as described in
http://dev.rubyonrails.org/ticket/6720.
2) At about the same time there was the issue of "[modulename] has been
removed from the module tree but is still active!" Both of these issues
finally went away when i explicitly required all the library files
within development.rb (originally had them required in the initializer
directory).
3) Now, on a new model called "Blog", I''m discovering that
calling
@blogs = @user.blogs.find(.......) in the controller, and calling
blog.id on an element in that collection gives me a "SystemStackError:
stack level too deep" on second request and onward, and it also goes
away if I set @blogs = Blog.find(.... :conditions => ["user_id =
?",
@user.id]).
So I''m seeing different but seemingly related issues on development
environment which I can step around but would rather not because it''s
simply not working as I expect them to. Wondering if these nuances in my
app could be the issue:
- requiring and including libraries within the lib/ directory from a
file in initializers.rb instead of an environment file
- having modules in lib/ that reference models in app/models
- defining user associations in a separate file user_associations.rb
which is called by require_dependency before the User class is opened in
user.rb
Any thoughts would be appreciated. Thanks in advance!
(Rails 2.0.2 on Leopard, Ruby 1.8.6)
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---