Tom Crayford
Tom Crayford
@rtomayko : thanks for the response. Do you know if this might affect the bug that we're actually seeing when replicating from prod (via a script that does things over...
You need to do this at https://github.com/davidfraser/oab-java6/blob/cookie-fix/oab-java.sh#L539 as well
## DCI I (and I think @garybernhardt) feel that DCI is a big mistake (at least, as I understand it right now). Whilst it's probably better than Rails, including modules...
Balls, looking through the code suggests that @garybernhardt did mean for users to use ValidationError externally. That's something we've (iirc) never discussed though, and I don't know what his thoughts...
You could have `ValidationError` capable of accepting arbitrary objects, and add it to the injector so that the route we're redirecting to can get at it? ``` path "articles" do...
So right now, you can bring in the delegate result by having your initialize method on the presenter take an arg of "subject". Once that pull req is merged, you...
Not directly injecting into templates _seems_ tempting, but I think it messes up with stuff like "I want to show a logout button when the user is logged in". If...
If we have subclassing of presenters, we're still going to end up with a lot of presenters like this: ``` class ArticlePresenter < UserLoggedInPresenter attr_reader :subject def initialize(user_logged_in, subject) super(user_logged_in)...
### HERETICAL IDEA Remove presenters, have views/templates that are all directly mustache (and encourage inheritance of views), screw other templating languages.
I actually had a crack at implementing mustache with raptor's current templating design, but threw it out because we couldn't do things like `content_for :title`. I assume mustache users just...