The component of the Ruby on Rails framework responsible for mapping between HTTP requests and application resources (including static files and controller actions).
I have a Rails 3 application with several engines containing additional functionality. Each engine is a separate service that customers can …
ruby-on-rails ruby-on-rails-3 url-routing rails-routing rails-enginesI have a NotificationsController, in which I only have the action clear. I'd like to access this action by doing …
ruby-on-rails ruby-on-rails-3 rails-routing restful-architectureI have a rails app (Rails 3.0) that I need to temporarily take out of service. While this is in effect, …
ruby ruby-on-rails-3 rails-routingIm new to use foundation and i have created simple Posts app using scaffold and i have done following steps: …
ruby-on-rails zurb-foundation rails-routingThe Rails routing guide doesn't specify what :on => :collection means. I cannot find an explanation to what the :on …
ruby-on-rails-3 routing rails-routingI have Rails 5 API project for controlling user tasks and I have the following error but not always for the …
ruby-on-rails ruby ruby-on-rails-5 rails-routing rails-apiNew web developer here, and I think I may be missing some very fundamental knowledge. Given the code def create @…
ruby-on-rails rails-routingI'm new to Rails and I have been following a tutorial. I have been fiddling around with routes.rb and …
ruby-on-rails rails-routingIn Rails 3.2.11, I have the following route definitions resources :foos do resources :bars resources :bangs, :controller => 'foos/bangs' end …
ruby-on-rails-3.2 rails-routing controllers nested-resourcesIn RoR 3, I just want to have a link/button that activates some action/method in the controller. Specifically, if …
ruby-on-rails model-view-controller controller rails-routing