resource_controller
resource_controller copied to clipboard
Rails RESTful controller abstraction plugin. This fork adds Rails 3 support and nothing else.
Since collection_urls are always "index" views, it should be possible (is it?) to make a trailing_slash the default for those URLs. Is this possible? If not, what would need to...
It seems that resource_controller is not compatible with Rails 3.2 and the Journey engine.
Hello, for some reason my singleton resources display strange behaviour after upgrading to Rails 3: - when I first start my application, or restart it, they work normally. - subsequent...
From what I gather, +find(:all)+ in ActiveRecord is being deprecated in favor of +all+. In ResourceController::Helpers::CurrentObjects line 17 has: ``` end_of_association_chain.find(:all) ``` which should read: ``` end_of_association_chain.all ``` This update...