Tagged Questions
30
votes
7answers
12k views
how can I find out the current route in rails?
I need to know the current route in a filter in rails.. how can I find out?
I'm doing REST resources, and no named routes
17
votes
5answers
8k views
Creating routes with an optional path prefix
How can I go about making my routes recognise an optional prefix parameter as follows:
/*lang/controller/id
In that the lang part is optional, and has a default value if it's not specified in the ...
16
votes
6answers
8k views
Rails: how do you access RESTful helpers?
I'm trying to work through this guide to Rails routing, but I got stuck in section 3.3:
Creating a RESTful route will also make available a pile of helpers within your application
and then they ...
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 ...
11
votes
1answer
2k views
Rails routing to handle multiple domains on single application
I've been unable to find a workable solution to this problem, despite several similar questions here and elsewhere. It seems likely that this question hasn't been answered for Rails 3, so here goes:
...
10
votes
4answers
7k views
Basic Rails 404 Error Page
I have been looking for a simple answer to this for a ridiculously long time and it seems like this has to be so plainly obvious and simple because no one has an easy, idiot proof tutorial.
Anyway, ...
9
votes
5answers
7k views
Devise Custom Routes and Login Pages
I'm trying to get Custom Routes working in my Rails application (Ruby 1.9.2 with Rails 3).
This is my config/routes.rb file
match '/dashboard' => 'home#dashboard', :as => 'user_root'
...
8
votes
2answers
734 views
Rails 3 resource routing without an id
I am creating a blog application on Rails 3, and I want to override the default show route generated for a post by doing
resources :posts, :except => :show
Which generates, for the show route ...
8
votes
5answers
3k views
Routing nested resources in Rails 3
I have a pretty common case for nested routes, I feel like, that looks something like this (in some sort of pseudonotation):
'/:username/photos' => Show photos for User.find_by_username
'/photos' ...
8
votes
4answers
1k views
How to limit the resource formats in the Rails routes file
When routing resources in Rails the optional format attribute is automatically appended to the generated routes. This is so that the resource in question can be requested as either XML, HTML etc. ...
7
votes
2answers
2k views
rails 3.1 ActionController::RoutingError (No route matches [GET] “/assets/rails.png”):
Standard new rails app has issue showing the rails.png
ActionController::RoutingError (No route matches [GET] "/assets/rails.png"):
I have tried moving the .png around to various places in assets ...
7
votes
1answer
240 views
Storing Rails 3 Routes in Database
By question is actually pretty simple. I'd just like to know if anybody was able to load their Rails 3 routes into a database so that they could be manipulated without server access from an admin ...
6
votes
1answer
4k views
Rails 3 returning a HTTP 406 Not Acceptable?
I have the following controller code:
def create
@admin = Admin.new(params[:admin])
respond_to do |format|
if @admin.save
redirect_to(@admin, :notice => 'Admin was ...
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
1answer
231 views
Recursive routes in Rails
Is is possible to create a recursive route in Rails?
I have an application, which allows a admin to create pages. The page model is a nested set and so each page has a parent_id hence the pages are ...
6
votes
3answers
2k views
Rails: How to modify tests for a nested resource?
While learning Rails I've created an application with a Domains controller nested below a Customers controller. I'm using Rails 2.3.4 and it's been a learning experience. I managed to get the below ...
6
votes
6answers
977 views
Django, Rails Routing…Point?
I'm a student of web development (and college), so my apologies if this comes off sounding naive and offensive, I certainly don't mean it that way. My experience has been with PHP and with a smallish ...
5
votes
1answer
108 views
One controller for multiple routes
I've been searching for a while now, but I can't seem to figure out if this is even possible.
What I need is one controller for two different paths.
What I have is one model, with two types: own and ...
5
votes
2answers
642 views
Disable :.format routes in rails3
Could you tell me how to disable the .:format options in rails routes? I only need html...
5
votes
3answers
2k views
Rails: redirect all unknown routes to root_url
Whenever a user hits the wrong page, rails shows 404.html from the public folder. However, I'd like just to redirect the browser to the root page, without showing anything. So I tried globbing, but ...
5
votes
1answer
701 views
Install Mogli Gem on Rails 3
I am trying to install the mogli gem( http://github.com/mmangino/mogli ) on rails 3 and am running into problems with the configuration. I have NO prior experience with Rails 2.
For Rails 2
Add ...
5
votes
3answers
207 views
Basic Ruby on Rails Question about routing
I have a controller without any related model. This controller is to span some information from various models. I have lots of actions there, which define certain views on the page. What would be the ...
5
votes
2answers
723 views
Rails, routing many named routes to one action
Is there a simpler way of writing this:
map.old_site_cusom_packages '/customs_packages_options.html', :controller => :public, :action => :redirect_to_home
map.old_corporate ...
5
votes
2answers
973 views
Changing Index Page - Ruby on Rails
I am new to rails so go easy. I have developed my blog and deployed it successfully. The entire app is based out of the post_controller. I am wondering how I can reroute the users path to default to ...
5
votes
1answer
2k views
How do I fix routing errors from rails in production mode?
If I try and access some random string in the URL of my rails app, such as /asdfasdifjasdfkj then I am seeing a rails error message
Routing Error
No route matches "/asdfasdifjasdfkj" with ...
4
votes
1answer
59 views
Resourceful routes, but with the #create action using GET instead of POST
While it's generally against our design principles, we need to have a controller execute it's #create action on a GET request (it's part of a workflow that involves a series of redirects for an ...
4
votes
2answers
107 views
Rails 3 routes to wrong controller
I wanted to create a new action and I call it "showemployees". That's what I did already:
-> in the controller:
def showemployees
end
-> creating app/views/employees/showemployees.html.erb
-> ...
4
votes
1answer
338 views
Handling forms with Single Table Inheritance
I have a form in my Profile edit view beginning with this line:
<% form_for @profile, :html => { :multipart => true } do |f| %>
Profile undergoes Single Table Inheritance and the two ...
4
votes
2answers
328 views
Routes with a dot in a parameter
I've got an route for my users like /iGEL/contributions, which works fine. But now a user registered with a name like 'A.and.B.', and now the route fails to match, since the name contains dots.
My ...
4
votes
2answers
708 views
How do I write a spec for a Rails route that does redirecting?
I am using Omniauth in my Rails project, and I'll like to hide "/auth/facebook" behind a "/login" route.
In fact, I wrote a route:
match "/login", :to => redirect("/auth/facebook"), :as => ...
4
votes
1answer
299 views
Weird routing error in Rails 3.0
I've been converting my Rails 2.3.9 application to Rails 3.0 and everything has been going well. I've created a lot of routes with the new system so I feel like I know how to do this. However, I ...
4
votes
5answers
2k views
Rails: Preserving GET query string parameters in link_to
I have a typical search facility in my app which returns a list of results that can be paginated, sorted, viewed with a different records_per_page value, etc. Each of these options is controlled by ...
4
votes
1answer
1k views
Creating a rails route to an external URL
A lot of my users keep going to http://(rails app URL)/blog, but I don't actually have a blog. I finally setup a Posterous blog and now want to direct my users there. Is there a way to configure this ...
4
votes
2answers
383 views
routing scope problem with form_for (partial)
Trying to route:
scope :shortcut do
resources :text_elems
end
Using basic scaffold with form partial
*_form.html.erb*
<%= form_for(@text_elem, :shortcut => @shortcut) do |f| %>
...
...
4
votes
3answers
219 views
Rails - Failing Routes in deployment
I have an app that has the following in the routes file:
namespace "admin" do
# ADMINISTRATIVE ROUTES ONLY
root :to => 'home#index'
resources :comments do
member do
...
4
votes
2answers
1k views
Adding custom :new routes using Rails 3 routing
In Rails 2 we can add custom new actions to resourceful routes, like:
map.resources :users, :new => {:apply => :get}
How do we achieve the same thing in Rails 3?
resources :users do
get ...
4
votes
4answers
453 views
Nested routing in Ruby on Rails
My model class is:
class Category < ActiveRecord::Base
acts_as_nested_set
has_many :children, :foreign_key => "parent_id", :class_name => 'Category'
belongs_to :parent, :foreign_key ...
4
votes
3answers
268 views
What is the opposite of url_for in Rails? A function that takes a path and generates the interpreted route?
Brain's a little fried....How do I get a hash of the :controller and :action from a relative_path?
This is basically the opposite of url_for. in the example below, "some_function" is the mystery ...
4
votes
2answers
682 views
How to map a full domain to a subdomain-based Rails app account?
I'm developing a Rails app that by default sets up user accounts to a subdomain of their choosing. As an option, they will be able to map their own full domain to their account.
So far this is how I ...
4
votes
4answers
3k views
How to use rspec to test named routes?
Given I have a named route:
map.some_route '/some_routes/:id', :controller => 'some', :action => 'other'
How do I use the routing spec file 'spec/routing/some_routing_spec.rb' to test for ...
4
votes
1answer
799 views
Rails routing and URI fragment identifier
When I was developing my RoR skills with some basic tutorials I encountered a problem. What I am trying to achieve is having comments belonging to posts, with no separate index or individual view. ...
3
votes
2answers
49 views
How do I access the route information (HTTP verb, action name, etc . . .) from within a controller in Rails?
Say I'm within a controller and I want to get a list of the actions and HTTP verbs that it supports, how would I do that?. E.g.
controller.actions # { [ :show, :get ], [ :update, :put ], . . . }
...
3
votes
1answer
39 views
RoR Routes Error: From a link_to built URL, route appears in rake routes
routes.rb
resources :project_associations, :only => [:update]
rake routes
project_association PUT /project_associations/:id(.:format) {:action=>"update", ...
3
votes
1answer
97 views
Raise an alert in rails controller without redirect
I just want to flash an notice/error if the message is/isn't saved, without any redirect, how can I have no redirect:
respond_to do |format|
if @message.save
format.html { redirect_to ...
3
votes
2answers
31 views
Rails Routing question
I'm not very familiar with routing, but here is my dilemma:
I have a photos controller with the usual show, edit, etc. views. I am trying to build a view to moderate photos. I have a ...
3
votes
2answers
159 views
Rails RSpec Routing: Testing actions in :except do NOT route
Fairly simple problem (I'd have thought), but I'm having some issues:
In Rails 3.1.0.rc6/RSpec 2.6.0, I'm trying to test the routing of my 'products' resource, routed like this:
resources :products, ...
3
votes
1answer
179 views
Environment-specific routing in Rails 3
I'd like to create a scope in my routes.rb file to only route certain URLs when in the production environment. How do you use conditionals with Rails 3 routing? All I need to do is restrict those ...
3
votes
3answers
48 views
Changing the route behaviour but keeping the “Convention over Configuration”
I am using Ruby on Rails 3.0.7 and in my application I have an Users::Article class (note that it is namespaced). In the routes.rb file it is stated as follow:
resources :users do
resources ...
3
votes
2answers
462 views
Rails routes with scope “:locale” and shallow nested resources
So I want to have Rails handle locale-specific routes for me, e.g.
/en/companies
/nl/companies
That works great with the routes definition:
scope "(:locale)", :locale => /en|nl/ do
resources ...
3
votes
3answers
119 views
Can anyone think of a way to create smart or dynamic routes in Rails?
Given that I have controllers:
app/controllers/app1/users_controller.rb
app/controllers/app2/users_controller.rb
I have in my routes file:
["app1", "app2"].each do |n|
constraints(:host ...