Tagged Questions
0
votes
0answers
16 views
Multi-Tenancy without subdomains
I watched Ryan Bates Railscast #388 regarding default scopes for multi-tenant apps. He does it using subdomains.
For a few reasons, I'd like to be able to do it without subdomains. for example:
...
0
votes
1answer
23 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
50 views
No route found, even though there is that route specified in routes.rb (RailsAdmin conflict, I think)
I just added CanCan authorization to RailsAdmin and it is when I access /admin as an unauthorized user, that I get this error:
ActionController::RoutingError at /
No route matches ...
0
votes
2answers
24 views
rails default actions are missing params in routing
Excuse me for my lame question, but i`m stuck.
Plain and simple in my routes.rb file i have:
resource :books do
resource :reviews
end
running rake routes | grep reviews gives me:
...
1
vote
1answer
26 views
Rails - Routing to seo friendly page
I have a site that shows twitter posts for a user. Currently when you search their name on the index page it takes you to this url
...
0
votes
1answer
13 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
...
0
votes
1answer
14 views
How can I get Rails 3.0 to not attempt to route a specific path, or at least not log it?
I'm trying to debug an issue on my development machine, but I've got production data loaded into the database. As a result, I've got a lot of image paths that don't have a matching file on the system ...
0
votes
0answers
21 views
Issue with overloading http verbs for route
We are using the same action in a controller (called 'residential_springs') to process and render a form
def index
//..code...
if params[:authenticity_token]
if process_post(params)
...
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 ...
1
vote
1answer
28 views
Routes Leading me to a Different Action
I have a routes folder
resources :groups
In my GroupsController here are some actions
def new
@group = Group.new
end
def update
end
def show
@groups = Group.find(params[:id])
end
When I ...
1
vote
1answer
108 views
ActionController::RoutingError (No route matches [GET] “/uniqueness”):
I am getting an error on uniqueness , I am using client side validation gem
ActionController::RoutingError (No route matches [GET] "/uniqueness"):
Here are the versions which i am using
...
3
votes
2answers
1k views
Active Admin Ruby on rails Dashboard Controller Error
All of a sudden my app seems to have developed a routing error uninitialized constant DashboardController
I am running Rails 3.2.0 with ActiveAdmin (0.6.0) and up until today everything seemed to be ...
0
votes
1answer
15 views
Rails Routing error on form submit
I am trying to implement a simple private message system using rails, and it works fine however when building the reply system, i get errors. here is the code:
def show
@message = ...
1
vote
1answer
47 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
34 views
How do I ignore a specific path?
The last line in my routes.rb is this:
resources :tags, path: "", except: [:index, :new, :create], constraints: { :id => /.*/ }
Which basically handles all /tagnames.
The issue is I am trying ...
0
votes
2answers
41 views
Setting root of my website to a controller in a namespace
I'm going to spend some of my easter vacation learning ruby on rails. I've encountered a problem with my routing. I hope you can help me with this.
What I'm trying to do is set my controller index in ...
0
votes
0answers
17 views
Exclude resources from subdomain or only allow certain resources available to subdomain?
Rails 3, How would one exclude all controllers and methods from a subdomain and allow only certain resources specified under the subdomain block to be available?
Routes.rb:
< all regular ...
0
votes
1answer
34 views
Retrieve all Comments of User (deeply nested)
Thats my routing:
resources :posts do
resources :comments
end
My User class:
has_many :posts
My Post class:
belongs_to :user
has_many :comments
My Comment class
belongs_to :post
In my ...
0
votes
1answer
19 views
Rails form called from a another controller's action
I have models User, Event, Rsvp. I want to have a Rsvp form appear in the show page of my Event model. A User can create many Events but I don't need to know which User create which Event (at least ...
0
votes
3answers
44 views
How do I redirect missing *.htm pages to a known page in Rails?
We've recently replaced an old HTML site with a shiny new Ruby on Rails one. Unfortunately a lot of the search engines are still looking for pages like 'index.htm' which no longer exist.
We already ...
0
votes
1answer
23 views
Rails 3 route appends _index to route name even if resource is plural
I have the following routes:
routes.rb:
namespace :admin do
#...
resources :carousel_images
end
controller:
def new
@admin_carousel_image = CarouselImages.new
#...
In view, ...
0
votes
2answers
87 views
Routing error while implementing create in rails 3.2
I am new to rails.I am getting the following error while trying to implement a create action..
Routing Error
No route matches {:action=>"show", :controller=>"settings", :format=>nil}
My ...
0
votes
2answers
79 views
No routes matches error in Rails 3.2
I am getting the following error
No route matches {:action=>"show", :controller=>"settings", :format=>nil}
while trying to implement settings/new.
My settings/new.html is as follows:
...
0
votes
0answers
25 views
generic path for arbitrary model
In my step-definition, I want to create a path to a named route for an arbitrary Model, like so:
Given(/^a new "(.*?)" form$/) do |model|
path = send("new_admin_#{model.downcase}_path".to_sym)
...
0
votes
2answers
75 views
How can I create an array of objects from a list of associated checkboxes?
First of all, I've done a fair amount of looking around, and while questions get around answers, I have a problem I think is somewhat unique. I have a list of checkboxes generated with the following ...
0
votes
2answers
26 views
Adding a record's attribute to the URL before the ID
I'm trying to add a specific attribute of a record in Rails to the URL from something like:
domain.com/share/5
(where 5 is the record ID) to something like:
domain.com/share/johnsmith/5
where ...
1
vote
2answers
63 views
Dynamic routes in rails with condition
I have a set of pages with public attribute. I want the routes file handle dynamic routes but only for public pages.
I currently have the following, but there is no restriction, all pages are ...
0
votes
1answer
58 views
Rails 3 route Type Mismatch Error when requesting url for route with subdomain in Mailer view
I'm getting this error when requesting this route: direct_appointment_url(@appointment.uuid, :subdomain => @user.name)
direct_appointment_url(@appointment.uuid, :subdomain => @user.name)
...
0
votes
0answers
30 views
Different root path for different users in rails 3
Is it possible to set up different application root for each user?
I've try it like this in the controller:
MyRails::Application.routes.draw do
scope "(:locale)" do
root :to => ...
0
votes
2answers
46 views
Rails Routing global Account id
My rails application is based on accounts. So every user belongs to an account, every project and so on.
Currently I got routes like:
/mission-control
/tasks
/projects
And I'm getting the current ...
0
votes
0answers
40 views
Route 404 errors to a different page - for web requests within a specific controller
I know that Rails has a built-in process for handling 404 errors in the production environment. I would like to learn how to override this process for a specific controller - and route to the index ...
0
votes
0answers
86 views
Rspec request spec looking for singular named controller
I have the following routes defined and the following UsersController defined and when I attempt to run spec test that attempts before { visit signup_path }, I get the following error:
ERROR
...
1
vote
1answer
39 views
Ruby in Javascript
I am trying to feed a Rails path into a javascript.
it looks a bit like this
view.html.erb
<script type="text/javascript" charset="utf-8">
...
0
votes
0answers
37 views
Rails route writing for DHTMLX Grid
I am trying to integrate Ruby on Rails with DHTMLX Grid.
I have sucessfully set up a non nested grid.
I am trying to set up a grid on a view that is nested 3 levels down.
This may not be a real ...
0
votes
2answers
19 views
Rails 3 create a route to nested independent page
I have 3 levels of nesting.
routes.rb looks like this
resources :clients do
resources :departments do
resources :tasks
end
end
I would like to create a custom path ...
0
votes
1answer
54 views
Rails Routing: One controller. One model with type. Multiple routes
I have one model named Factors, which has two types: ['personal', 'advisor']
I want to have one controller FactorsController that has all the same actions for both types of Factors, but only ever ...
0
votes
1answer
92 views
rails routes with scope locale
I have add another language to my app. So, I am using the following routes for the static pages:
scope "(:locale)", locale: /en|br/ do
get "static_pages/about"
match '/about', to: ...
1
vote
1answer
34 views
How can I evaluate percentage with Rails / Ruby?
in application.helper I was trying to do this.
However it always get 0. Why?
I want something like 37% 49% 98%
Always integer. no float
def evaluate(number_of_people)
percentage = ...
0
votes
1answer
399 views
How can I remove subdomain when the user accessed to www.xxxxxxxxxx.com?
Now in my app, the user can access to both www.xxxxxxxxxx.com and xxxxxxxxxx.com
but I don't want to use www.xxxxxxxxxx.com
How can I make the user redirect to xxxxxxxxxx.com?
My routing is like this
...
1
vote
3answers
61 views
Rails trying to create nested routes
Ok i'm shooting to have a url like this /applications/:application_id/jobseekers/new. I know if i generate 2 scaffolds (applications and jobseekers) i could make the routes work by doing this:
...
0
votes
1answer
53 views
Add default, fall-back action for controller in rails
I have a controller with a single index action. The same resource has some static assets which don't require anything in the controller. There used to be some others which are now gone but there are ...
0
votes
2answers
34 views
ruby on rails: how to restrict nested routes?
I have a company model, and a company can have many locations, so I have routes set up like so:
resources :companies do
resources :locations
end
I'd like to be able to add a new location to a ...
1
vote
1answer
68 views
No route matches when . character comes inside a parameter
I have a route like this:
match '/pages/:name/preview' => 'pages#page_preview'
But, it is giving me an error 'No route matches', when a route like this comes /pages/a.com/preview. I tried URL ...
0
votes
1answer
26 views
Why do I need to specify the controller inside rails 3 controller routing?
The following route works:
controller :foo do
get 'bar/:baz' => "foo#bar"
end
but this
controller :foo do
get 'bar/:baz'
end
will throw missing :action
Why doesn't it detect the ...
0
votes
1answer
55 views
How should I make this routing RESTful?
For RESTful purpose, I made my routing just like this:
routes.rb
match 'shops/:sort/:genre/:area', :to => 'shops#index'
But what if genre was empty?
Isn't it going to redirect to ...
0
votes
1answer
32 views
How can I make this RESTful when it's requested with few parameters at once?
I made my routing just like this. But what if genre was empty?
Isn't it going to redirect to example.com/shops/newest_first//california?
How can I solve this kind of routing and parameters problem??
...
0
votes
1answer
74 views
How to use both Omniauth_callbacks controller and custom devise registrations controller
I have a custom registrations controller for devise set up, which is this:
devise_for :users, controllers: {registrations: "registrations"}
and in the controller:
class RegistrationsController ...
0
votes
1answer
118 views
Rails 3 Routes: Default format and also limited formats
I am having a problem combining 2 rails routing features (default params and param matching). Each is independently easy enough to solve, but when combined, the results are not quite what I am after.
...
0
votes
1answer
57 views
Skip image missing routing error in development
I regularly imports some tables from the production to development environment. One table is related to images, and when I run development, these images all causes ActionController::RoutingError (No ...
0
votes
1answer
53 views
How can I use “redirect_to” removing requested subdomain?
If I access to http://walmart.example-site.com
it redirects me to http://walmart.example-site.com/communities/walmart
But I want it to redirect to http://example-site.com/communities/walmart
How can ...

