David Sommers
David Sommers
I haven't done a release, maybe @risadams can run that command for us. Thanks.
@risadams - ah, completely forgot. What a year... @joallard - can you help? Just need to do a release and release a minor update with recent changes. See comments above.
Make sure `config.cache_sources = true` if you're running benchmarks since the templates are read from disk when cache_sources is false. Normally you use `config.cache_sources = Rails.env != 'development'` so that...
I have a feeling that on the micro benchmark level, there's not a huge part of the performance stuck in reading the template file - most of that 1 second...
In Rails when it says that the view took `n` seconds - it also means accessing the objects and any lazy loading of objects referenced in the views is a...
Ah, I missed the fact that it was a large collection - I just reread the original post. I'll dig into it (not that I wasn't, I still was).
Do you have a sample app that shows this? What's the name of the file? What's the name, value and timestamp of the object?
@nesquena thoughts on this for the 1.0 design in Issue #216? Allow child to accept 0 arguments?
Hmm, I would try something like: ``` ruby node :questions do |q| partial 'questions/index', q.available end # questions/index.rabl attributes :id, :interview_id, :time ```
Well JSON and XML technically have different protocols. The problem with JSON in your case is that the hash itself needs to be labeled. If you had a questions node...