Tagged Questions
0
votes
2answers
48 views
uninitialized constant for HomePresenter
I'm trying to implement a HomePresenter to be used inside the home action of my Pages controller:
# app/controllers/pages_controller.rb
class PagesController < ApplicationController
def home
...
0
votes
1answer
76 views
Name conflict between controller name and presenter namespace
I am using the presenter pattern and am seemingly running into inconsistent class naming conflicts. I have a pages controller with a homepage method and I'd like to have that method use the ...
0
votes
1answer
188 views
What are some patterns for creating views and controllers in an MVC or MVP app?
I'm working on a MVC/MVP GUI for editing a document. The document has a tree structure, with some nodes representing text, others images. The app model also includes a command stack, with commands ...