Tagged Questions

3
votes
2answers
1k views

Using named routes with parameters and form_tag

I'm trying to create a simple search form in Rails, but I think I'm missing something. I have a named route for search: map.search ":first_name/:last_name", :controller => "home", :action => ...
2
votes
0answers
220 views

Named routes in mounted rails engine

I'm making a small rails engine which I mount like this: mount BasicApp::Engine => "/app" Using this answer I have verified that all the routes in the engine are as the should be: However - ...
1
vote
1answer
173 views

How do I specify that a named route should use a model's columns its _url and _path functions?

I have a Posts model with id and title columns. I've got my route (rails 2.3.8) set up as follows: map.post ':title/:id', :controller => 'posts', :action => 'show' which works correctly when ...
1
vote
2answers
1k views

match method in routes.rb

I'm trying to follow this tutorial here but the tutorial seems to use this "match" function. match '/about', :to => 'pages#about' Whenever, I do the same, I get this error from the server: ...
1
vote
2answers
467 views

rails named routes + controller as parameter

is it possible to have the controller value in a rails named route as a parameter, which I can pass at runtime to direct the call to the proper controller? e.g. map.ride 'ride' ,:controller => ...
1
vote
1answer
758 views

How to add :format options to a named route in Rails?

I've got a named route called profile and I would like to be able to access it as json. But when I look at my rake routes output I see that the (.:format) is missing. How do I add it to a named route? ...
0
votes
1answer
43 views

Rails named routes for the show action

In my app I assign a url's href attribute as profile_path when using resources :profiles in my routes.rb file. I do not pass any id into profile_path yet the app somehow correctly assumes that it is ...
0
votes
1answer
41 views

Rendering rails named route

How do I render a rails named route properly from controller? routes.rb: get "logout" => "sessions#destroy", :as => "logout" get "login" => "sessions#new", :as => "login" get "signup" ...
0
votes
1answer
165 views

Rails named route's URL problem

HI, I have a problem printing the named route's URL in production application. In one of my email template (email registration confirmation), am trying to append the confirmation url. this is the ...
0
votes
1answer
57 views

Is it possible to specify a named route within a resourceful route?

I'm just upgrading my app to Rails 3 and as I have to rewrite my routing anyway, I'm taking some time to improve my named routes. I have an invoices controller which has a trash action ...
0
votes
2answers
50 views

How do I create a resource that is the sub-set of an existing resource

In my "routes.rb" file I have the following line: resource :users which gives me a bunch of named routes for accessing my User model in a RESTful manner. Now, I've made some additions to the User ...
0
votes
2answers
535 views

In Ruby on Rails, routes.rb, if map.something will create something_path and something_url, does map.connect create something like that too?

In Ruby on Rails, routes.rb, if we create a "named route" map.something ":a/:b", :controller => 'foobar' it will also create something_path and something_url which are two methods usable in the ...
0
votes
1answer
183 views

Named Routes in Rails: how to capture a custom url and then send params to update

I want to have this exact named route that I can put in views: <%= link_to publish_review_path(@review) %> ... I would like it to map to a path like this: "/reviews/3456/publish" ... and ...
0
votes
2answers
192 views

quick rails named routes question

In my view I specify a named route like this: show.html.erb -> seo_path(:id => "45") Now in my routes I define like so: routes.rb -> map.seo "/pages/:id/:permalink", :controller => ...