0
votes
0answers
17 views

Redirect scoped resources block in Rails routes?

Want to redirect from these existing routes: scope ':category_id', shallow_path: ':category_id' do resources :posts end to: scope 'prefix' do scope ':category_id', shallow_path: ':category_id' ...
0
votes
1answer
16 views

No route matches {:action=>“schedule”, :controller=>“users”}

I have a weird problem : I get the following error after signing in and trying to go back home following URL localhost:3000/ " No route matches {:action=>"schedule", :controller=>"users"} " Here is ...
0
votes
1answer
25 views

Strange Routing error in rails 3. Rails changes the route that is specified

I have a rails 3 app, and when I click the link to my terms page, it routes to a completely different controller, than what the routes should use. Stranger still, the route works when I'm not logged ...
0
votes
0answers
21 views

Access to Rails.application.routes.url_helpers in views missing after Rails upgrade

I am attempting to upgrade an application from Rails 2.3 to 3.2. The issue I am currently stuck with is that Rails.application.routes.url_helpers is missing in views. So, for example, my routes.rb ...
0
votes
1answer
20 views

undefined local variable or method on link_to in rails

Thats the link_to <%= link_to('Dashboard', dashboard_index) do %> <i class="icon-play"></i> <% end %> Thats the corresponding rake routes entry. dashboard_index GET ...
1
vote
1answer
16 views

Could not find table by rake routes on production server

When checking routes on production server with rake routes, there is an error of Could not find table 'authentify_engine_configs' which is a table in the database. What could cause this error? The ...
0
votes
1answer
22 views

Ruby on Rails generate routing

I am trying to generate routes in my rails app. The app has Movie table and column genre. I want to make the routes like this: /movies-genre-horror and shows all the movies with genre horror. Is it ...
0
votes
1answer
32 views

Changing every route from /product to /eshop in Rails Route 3

in my routes.rb i have foll entries:- resources :products do get 'get_products', :on => :collection get 'show_product_details',:on=>:member get 'buy_this',:on=>:collection ...
0
votes
1answer
20 views

ruby on rails routing helper: how to create select_clients_path(client)

I have client standard resource with CRUD, but I would like to make extension with action select, so that I can have select_clients_path(client). In clients_controller I have created action select, ...
0
votes
2answers
22 views

No route matches [DELETE] “/models.id” Error

I keep getting this error and I haven't found an answer here that addresses this error. I have a Book, User and Like model stated like this: class Book < ActiveRecord::Base attr_accessible ...
0
votes
1answer
36 views

Rails route with dynamic segments not working

I have the following non-resourceful route with dynamic segments: get 'places/near/:lat/:lng' => 'places#near', as: 'near_places' When I run 'rake routes', the route is there: near_places GET ...
0
votes
0answers
33 views

Rails 3 Routes - Redirect When Constraint Not Met

On the advice given in the question "Rails 3 SSL routing redirects from https to http", I have some routes that look something like this: ROUTES_PROTOCOL = Rails.env.production? ? 'https://' : ...
0
votes
1answer
10 views

An error with routes [ruby on rails]

I have generated a form called Clients by using scaffold , then when I decided to change its url form routes file , I typed this command match '/book', to: 'clients#new' and now the problem is : I ...
0
votes
1answer
27 views

No route matches [POST] “/author/test_author/24/steps_author/13”

I have a form that will work sometimes and sometimes not and I can't work out what is changing between times, other than restarting the rails app. Currently it isn't working. I have these entries in ...
0
votes
0answers
12 views

How to config a singular route with namespace in Rails 3?

In my routes file I have the following: namespace :admin do authenticate :user do resources :my_controller, :path => 'some-path' do member do put 'action1' ...
0
votes
1answer
61 views

The page you are looking for doesn't exist. root_to

I have an app that works fine locally, but than I try to push to heroku and the root_to route doesn't work. I've gone through and looked at all the other posts for this, but none of them are for the ...
0
votes
1answer
19 views

No route matches {:controller=>“support”, :action=>“/support”}

My code seems simple enough yet when I try the code below I get no route match error. This is my controller def support end This is my view <%= form_tag({ controller: "support", action: ...
0
votes
1answer
29 views

Rails route not working

I created a new route and a corresponding method in a controller and view: routes.rb: get "pictures/user/:username" => 'Pictures#user' pictures_controller.rb: def user @pictures_user = ...
0
votes
1answer
32 views

Rails 3 route has incorrect singular form

I have the following routes: resources :businesses, only: [:show, :index, :new, :create] do resources :pledge_drives end This creates the following: % rake routes | grep pledge ...
0
votes
1answer
12 views

Nested routes and dot in url in Rails

I'm building a simple todo app for some practice. I have projects which has_many tasks and tasks belongs_to projects. So that I can display url/projects/1/tasks I'm nesting the route: routes.rb ...
1
vote
2answers
35 views

Writing a rails route that doesn't accept get query params

I want to match a specific route but not that route with any get query params. Lets say I have a route like this: get '/home', to: 'home#home This works great for /home but how to I 404 ...
0
votes
1answer
31 views

remove resource name and get 404 response with mongoid_slug gem

namespace :blog do resources :posts, :only => [:index, :show], :path => "/" end If I write: http://localhost:3000/blog/post1 and it's working fine. However if I write: ...
0
votes
1answer
31 views

A custom route is matched in development but results in 404, in production

I have a following definition in my routes.rb match "/block/:name/:action" => proc { |env| #heavy magic happens here } I use it for handling rendering of cells. My problem is that the ...
0
votes
2answers
57 views

Does every belongs_to has_many association need nested routes?

This is a fairly basic question but I haven't been able to find concrete answers online. Every has_many belongs_to does not need nested routes correct? Should you only use nested routes when you're ...
0
votes
3answers
29 views

Rails index action always returns null

So I am having an issue where I have this index action that is supposed to return json, but in the browser I am always getting a null response. Controller class Admin::Groups::UsersController < ...
0
votes
0answers
38 views

No route matches [POST] - tring to create new data

Currently i m working on a simple application. Which has a model 'contact' and a model 'address' (address belongs_to contact). Here is my addresses_controller.rb class AddressesController < ...
0
votes
1answer
13 views

drop url from url_for

I have a application that I am trying to forward a link to a page from Active Admin. Through Active Admin I have it setup as follows: section "Events" do column "Event Name" do |e| ...
0
votes
1answer
18 views

No route matches [POST] “/contacts/1”

app/view/contact/show.html/erb <%= form_for(@contact) do |f| %> <p id="notice"><%= notice %></p> <p> <b>Firstname:</b> <%= @contact.firstname %> ...
3
votes
2answers
77 views

My login route doesn't work after trying to force SSL via routes.rb

I want people to be able to both subscribe and login to my application via SSL. My original route, which was not SSL, was this: resource :login, controller: "sessions" do collection do get ...
0
votes
1answer
28 views

undefined method `model_name' for NilClass:Class in edit form

I have a rails app where I can create and edit records. I've created a form to enter data which works fine when I use the new/create actions. It will create a record no problem. But when I hit the ...
1
vote
2answers
16 views

Routing Resources Doesn't Set up Routing Properly

Normally I would expect resources to set the routes where /groups/:id However, when I call rake routes I get GET /groups(.:format) groups#show Also, whenever I use the view helper method ...
0
votes
1answer
62 views

Link_to and Ajax request Rails

Hopefully I can explain this so people can understand what i am trying to achieve. Currently I have multiple posts being created and they are shown at this url for public view /tynewyddnews as ...
0
votes
1answer
32 views

why no path names for custom routes in Rails

In my rails app following in routes.rb resources :users leads to following output for 'rake routes' users GET /users(.:format) users#index POST ...
0
votes
1answer
30 views

:name_prefix is not effecting anything on namespace routing

I'm trying for a day to solve this one... Moving an app from rails 2 to rails 3, I've encountered some problems with the Routes. I want to use the :name_prefix option on the 'namespace' method. Can ...
0
votes
1answer
36 views

Using case statement in a helper

I haven't used case statements before and was wondering how to do the following. I have a number of news pages, each having posts relevant to department, so the pages /tynewyddnews /woodsidenews ...
1
vote
1answer
65 views

Truncate text and link to Read more

Come across a little stumbling block when linking to a post within my app. I am truncating the text of a post and providing a 'Read More' link. There are 2 areas where posts are viewed, one for ...
1
vote
2answers
16 views

No route matches controller in rails app

I have an app where I'm creating a get action called "new_911". When I put new_911_call_path in the application layout I get an error "no route matches new_911 controller: calls". Yet there is an ...
4
votes
1answer
51 views

Creating custom routes where a model attribute is used instead of the ID in Rails

I have a model called Student, which has an attribute called University_ID in it. I created a custom action and route which displays the details of a specific student via the following link ...
0
votes
4answers
155 views

Rails Uninitialized constant routing error

I know this question is plastered on the net, but after looking at all the answers, i still can't figure out what my problem is. Here's my route: resources :applications do resources :applicants ...
1
vote
0answers
19 views

Rails route namespaced in omniauth

I have this in routes.rb: namespace :api do namespace :v1 do ... devise_for :users, constraints: { format: :json }, :controllers => { :omniauth_callbacks => "auths" } ... ...
0
votes
1answer
39 views

redirect_to edit

I have quite a long form in my app so I've set up a _new_form.html.erb which is rendered in my new.html.erb. After the user updates this form and passes some basic validations I would like them to be ...
0
votes
1answer
59 views

link_to paths not linking after adding bootstrap

I have a rails application that is built on the SAAS stripe application that is hosted here: http://railsapps.github.com/rails-recurly-subscription-saas/ I added twitter bootstrap to this and my ...
1
vote
1answer
45 views

Rails routing confusion due to :id

I am using devise for authentication. When signing up users create a profile name that I would like to use as their profile route. So, it might look like this: www.myapp.com/profile-name. The ...
0
votes
1answer
19 views

Change a route to a controller

I have a basic app and I'm trying to destroy a record in a table called meeting_participants based on both the meeting_id and participant_id (which are columns in meeting_participants). I have ...
2
votes
1answer
26 views

Rails - Specifiy Root Path w/ Custom URL: '/dashboard'

How do I make this root path go to: '/dashboard' instead of just http://example.com? root :to => 'dashboard#index', :constraints => lambda{|req| !req.session[:user_id].blank?}
1
vote
2answers
44 views

Ruby on Rails exclude group elements in route constraints

I was wondering, how to define constraints regex for my route, that would match only if it excludes every single element of the group. For instance, I would like to do so: get "list/:action", ...
-1
votes
2answers
63 views

No route matches {:action=>“show”, :controller=>“restaurants”}

If I want to go with my home page clicking on the map localhost:3000/maps gets out this error No route matches {:action=>"show", :controller=>"restaurants"} controllers/maps_controller.rb def index ...
0
votes
3answers
52 views

How do I re-write this route to be shorter?

I have resources :tags in my routes.rb. So when I go to /tags/ios, it shows me the correct Tag#Show view. What I would like to happen is when the user goes to /tags/iosit shows it as /ios and ...
0
votes
2answers
49 views

Rails 3 nested resources - form partial only works for either new or edit, not both

I have nested resources, and I'm trying to create form partials for each individual resource to use for the new and edit action of each. routes.rb resources :accounts, shallow: true, :except => ...
0
votes
1answer
40 views

Rails 3 No Route Matches Error

My application uses tickets and call_logs. I have these nested in each other, so that tickets can have many call_logs. I am getting the error with [GET] "/call_logs" I don't know what I am missing ...

1 2 3 4 5 17