Tagged Questions
The rails-routing tag has no wiki summary.
45
votes
6answers
11k views
Can Rails Routing Helpers (i.e. mymodel_path(model)) be Used in Models?
Say I have a Rails Model called Thing. Thing has a url attribute that can optionally be set to a URL somewhere on the Internet. In view code, I need logic that does the following:
<% if ...
15
votes
2answers
478 views
In Ruby on Rails Routing I Would Like to Use Dash `-` Instead of Underscore `_`
I would like all the URLs for my web applications to use dash - instead of underscore _ for word separators. I'm surprised about a couple of things really:
Google et al. continue to distinguish ...
8
votes
1answer
578 views
Listing 'rake routes' for a mountable Rails 3.1 engine
I'm working on a mountable engine for use with Rails 3.1, and I want to list the engine's routes.
I created the engine using:
$ rails plugin new rails_blog_engine --mountable
And edited the ...
6
votes
2answers
448 views
Creating an Admin directory in Rails
I've been developing the CMS backend for a website for a few weeks now. The idea is to craft everything in the backend first so that it can manage the database and information that will be displayed ...
6
votes
3answers
2k views
What's the difference between :new, :collection and :member routes?
I've read the documentation, but I'm still not sure I understand everything.
Especially why there's a :new parameter. As far as I understand, it could be replaced with the :collection parameter.
So ...
4
votes
1answer
375 views
Rails 3 Routes: DRY members
I need to add the following member methods to a number of resources, is there a way to DRY this up?
member do
get :votes
post :up_vote
post :down_vote
end
In my routes.rb
...
4
votes
2answers
169 views
Rails: RESTful resources: Worth using or inflexible/overrated?
I've been messing about in rails the past 2 months and so far everything's going well - but there's one area I'm a little doubtful on.
I keep hearing about the joys of RESTful rails resources: that ...
3
votes
2answers
264 views
Engine routes in Application Controller
I have a before_filter hook in my main app's application controller that does something like: (It doesn't just put a link in the flash, there is a message, but it isn't relevant to the question, it ...
3
votes
1answer
80 views
How do you handle bad formats in Rails 2 routing?
How does one handle bad formats in routes in Rails 2.3? For instance suppose that you have an action that wants to handle html or json requests but nothing else how do you restrict it while allowing ...
3
votes
1answer
340 views
How to dynamically add a route to a scoped resource in Rails3?
right now I am trying to generalize some of my code. So far it went well, I wrote a few mixins which I can dynamically add to Controllers or Models in order to get things done while obeying DRY.
But ...
3
votes
2answers
978 views
How can I make routes from a Rails 3 engine available to the host application?
I have a Rails 3 application with several engines containing additional functionality. Each engine is a separate service that customers can purchase access to.
I am, however, having a problem with ...
3
votes
2answers
3k views
Rails 3 link_to (:method => :delete) not working
I'm having trouble with my verbs in Rails...
viewing a page for a resource (Dog) which has_many (Fleas). Embedded in dog's show.html.haml is a call to render @dog.fleas which automatically(?) finds ...
3
votes
3answers
841 views
Overriding a resource route to / (root) in Rails3: not changing the path helper?
I am quite new to Rails3, I basically created a subscribers scaffolding, I only want my app to respond to new and create actions.
So in config/routes.rb I defined:
resources :subscribers, :only => ...
2
votes
1answer
94 views
Using rails, devise and cancan, a signed in user can access the sign in and sign up paths
I'm not sure what I did, but a signed in user can access the new_user_session_path and new_user_registration_path. Usually in devise, a user should not be allowed to access those paths. I'm using ...
2
votes
1answer
152 views
ActionView::MissingTemplate - but the template exists already?
I'm having some issues with routing in Rails.
I already have a model in place for a Project model, so I generated some default controllers and views using rails generate scaffold_controller, e.g. ...
2
votes
1answer
28 views
Rails Restful downloads
I want some users to be able to download data in a yaml file.
I see that you can do this with
send-file (but uses a lot of resources)
direct link_to the file in public folder (not good for me ...
2
votes
1answer
59 views
Rails route for button
I'm a rails newbie and a question on routes is confusing me.
On one of my pages, I have a form. In that form I allow the user to fill in some needed information and press a "submit" button.
I get:
...
2
votes
1answer
23 views
Updating rails 2 routing to rails 3
Hi I'm stuck with a little bit of rails routing,
How should this look in rails 3 routing?:
map.resources :books do |book|
book.resources :comments, :only => :create
end
2
votes
1answer
171 views
Rails POST forms to pretty URL
Having one of those 'I'm clearly doing something wrong' moments. It feels like I'm trying to do something basic, and fighting the framework, so I'm appealing for help!
I'm using Rails 3 and am a bit ...
2
votes
1answer
87 views
Rails 3 routing looking for wrong controller
First I had this route in config/route.rb
get 'inbox/index' => 'inbox#index'
Then I ran rake routes, the route was correctly generated:
inbox_index GET /inbox/index(.:format) ...
2
votes
1answer
167 views
Routing issues with multi-part forms on Heroku
This is a very bizarre problem, and unfortunately I can't provide a ton of information since I don't even know where to begin diagnosing the problem. I'm hoping somebody hear magically knows what to ...
2
votes
1answer
24 views
Nested resources segments misplacement
I'm trying to implement basic social network features to allow users to add, delete friends, accept and decline friedship requests.
my user resource looks like this:
resources :users
resources ...
2
votes
1answer
331 views
Rails 3 routing constraints don't seem to be matching the regex properly
I am using Rails 3.0.5 and I have setup a route using a regex constraint. It used to work on Rails 2.3.5, but it's not working in Rails 3. The route looks like this:
get '/:version_id' => ...
2
votes
1answer
245 views
How do you test namespace post :post routes?
I have these route
# routes.rb
namespace :admin do
resources :departments
end
And following code in controller test. It fails because post :create is not heading to admin_departments_path. What ...
2
votes
3answers
306 views
Complex Rails Routing
I would like to do something like github has with nested urls, and like http://stackoverflow.com/questions/1863292/how-do-i-route-user-profile-urls-to-skip-the-controller but not really sure how to go ...
2
votes
1answer
283 views
How do I add something to each route in Rails?
Is there an easy way to add a permanent string to every route in a Rails app, given that I already have quite a few resources specified and don't want to refactor all into a namespace?
Can I do ...
2
votes
3answers
239 views
:id in URLs
I'm still new to ROR, so pardon the simplicity of the question...
So http://www.example.com/controller/:id displays a record in my table, with :id being a number (1,2,3 etc.).
Is there a way I can ...
1
vote
1answer
24 views
How do I translate some complex routes from Rails 2.3 to Rails 3.1?
I am working on a project where I am upgrading a Rails 2.3 application to Rails 3.1. There is one thing which I am not able to figure out. Below is a route defined in a Rails 2.3 application:
...
1
vote
0answers
20 views
Rails 3 nested routes parameter names different
I have a nested resource that looks like this:
resources :events
resources :attendances
post 'update_email'
end
end
and it shows me routes that look like this (left out most of the standard ...
1
vote
1answer
45 views
Rails 3 custom route not recognized by *_path method
Is there a way to make sure a custom route is recognized by the *_path method?
I've got a resource, and a custom route to the same controller:
resources :news, :only => [:index, :show], :path ...
1
vote
2answers
17 views
How to write routing when resource model name does not match path or controller
I've got a model called ImplicitTest. It's called this as having a Ruby object called Test just breaks a lot of things in Rails.
However, I still want to expose it as a RESTful resource as test (e.g. ...
1
vote
2answers
32 views
rails newbie - how to change querystring into route
Am learning rails the way most do, by implementing a blog. I've just put tagging in and have got my article view to the point where it's displaying clickable tags when you display an article. The ...
1
vote
2answers
28 views
Add /api/v1/ url scheme to rails app
I'm planning a web app that is exposed primarily through a client application through an API. I've worked with rails before so am going to use this to create the back-end.
Whilst planning the API, ...
1
vote
0answers
39 views
Rails 3.0.9 Routing error - how to fix - to meet the goal of using /registration/diagnoses as a URL?
Background
I have attended an excellent Rails course in Manchester, UK recently run at MadLabs (plug for them) run by two knowledgable practicioners.
Prior to that I have worked my way through ...
1
vote
1answer
21 views
rails 3 routing not working as i would like
How would i go about routing the default page in my rails application to :
http://localhost:3000/pages/1
at the moment in my routes file i have:-
root :to => 'pages#show'
1
vote
1answer
42 views
Routing resource does not handle “new” as expected
I have a simple rails application in which I'm trying to add a very simple type of record ("client_types") to a database.
I have a route in routes.rb which reads:
resources :client_types
And ...
1
vote
2answers
80 views
How do I access all routes, when an App and an included AppEngine gem define controllers with the same name?
I have an engine (developed by me / the company I work for) that we use on several different projects. I just converted it to work with rails 3.1 w/ assets pipeline and everything seems to be ...
1
vote
1answer
86 views
Rails 3 link or button that executes action in controller
In RoR 3, I just want to have a link/button that activates some action/method in the controller. Specifically, if I click on a 'update_specs' link on a page, it should go to 'update_specs' method in ...
1
vote
2answers
62 views
How to add a custom parameter to a default action in routing
Can you please help me? I got stuck!
I implemented a single table inheritance for a model "Customer". "Person" and "Company" are "Customers". So I added two new routes to forward all requests to the ...
1
vote
1answer
154 views
How to match hash (deep nested) params in Rails3 to make a pretty URL?
If I have this route (in routes.rb):
match 'posts', :to => 'posts#index'
It will show and match the following routes:
# Case 1: non nested hash params
posts_path(:search => 'the', :category ...
1
vote
3answers
80 views
How does Twitter get two different home pages depending on login or not? - Rails 3.1
If you go to Twitter.com when you are not logged in, you will see the marketing page with the login & registration fields.
However, if you go there when you are logged in, you will see your ...
1
vote
2answers
191 views
How do I get the format of my URLs to be username/controller/:id in Rails 3.1?
I want it similar to the way Twitter handles the URLs for its tweets.
For instance, right now my URL looks like this: mydomain.com/feedbacks/1/, where feedbacks is the name of the controller.
I want ...
1
vote
1answer
56 views
Routing with an optional parameter
I added in the route file:
map.show_book "/show_book/:name/year/:year", :controller => "book", :action => "show_version"
I also added:
map.show_book "/show_book/:name", :controller => ...
1
vote
1answer
124 views
No route matches scoped resources
rails new example
rails g scaffold widget
rake db:migrate
Edit routes.rb as follows: scope ":year" do resources :widgets end
curl http://0.0.0.0:3000/2011/widgets is successful
echo "Widget.new.save" ...
1
vote
0answers
33 views
Is it possible to have a dynamic root route?
I want the root URL to render a different controller/action based on the current_website (domain of the request).
Something like:
# routes.rb
root :to => current_website.root_route
# ...
1
vote
1answer
80 views
Rails 3 Routing: I have “/products?cat=1”, I want “/art”
I'm fairly new to Rails and find myself confused by the routing config.
In my project I have 2 models: Product and Category. Product belongs_to Category, Category has_many Product.
The Products ...
1
vote
1answer
142 views
Rails' resource has 'show' mapped without an ID and creates /users.id links instead of /users/id
For my current routing, the following ruby on rails code:
<%= link_to current_user.name, users_path(current_user) %>
which produces a link like the following:
<a ...
1
vote
2answers
201 views
Routing problem in rails
// see below for update
Error:
No route matches {:controller=>"conversations", :action=>"reply", :id=>nil, :board_id=>nil}
Parameters dump:
{"board_id"=>"2",
"id"=>"3"}
Log:
...
1
vote
1answer
182 views
can't use member outside resource(s) scope (ArgumentError)
I have this code in my routes.db file:
resources :users do
member do
get :following, :followers
end
end
and I get the error:
can't use member outside resource(s) scope (ArgumentError)
...
1
vote
1answer
246 views
Rails 3 vs Rails 2 “wild controller” routing
I'm trying to get my Rails 3 project to automatically resolve namespaced controllers, similar to the Rails 2 behaviour. For example (Rails 2):
$ rails pathtest && cd pathtest
$ ...