resource_controller icon indicating copy to clipboard operation
resource_controller copied to clipboard

Rails RESTful controller abstraction plugin. This fork adds Rails 3 support and nothing else.

Results 4 resource_controller issues
Sort by recently updated
recently updated
newest added

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...