Related questions
How to find where a method is defined at runtime?
We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but, due to some oddities in …
Call a model method in a Controller
I'm have some difficulties here, I am unable to successfully call a method which belongs to a ProjectPage model in the ProjectPage controller.
I have in my ProjectPage controller:
def index
@searches = Project.published.financed
@project_pages = form_search(params)
…