This is my error: No route matches {:controller=>\"accounts\", :format=>nil} and this is the url:
My routes looks like this resources :stores, :except => [:destroy] do resources :toys, :member => {:destroy => :delete}
I\'m trying to create a Rails app that divides the users by groups and sub-groups and offers a customized site to each sub-group. I figured the easiest way to do that was to create scope with named pa
I have two models: Product and ProductType: Product: class Product < ActiveRecord::Base default_scope :order => \'name\'
I need some help with nested resource actions. I have three nested resources: Jobs, Questions and Answers. I am currently only trying to get the edit/update method to work for the questions controller
I\'m stuck on a very tricky issue involving Rails 3 routes, and not good enough with routes to figure this one out on my own. I have a \"Reviews\" resource with only a \"Show\" and \"Index\" action. I
Ok guys so I have a nested route like this: resources :apps do resources :forms end In my form index I have this block:
do you know how to generate dynamically routes such as: ... (/:parent_id(/:parent_id(/:parent_id(/:parent_id))))/:id
I have setup my versioned API like this with only a small tweak for backwards compatibility. In my routes I have:
Implementing versioning for a Rails app I\'d like to have a view that开发者_C百科 displays all versions of a model with some extra functionality like reverting etc.