Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

Does anybody have any tips for managing polymorphic nested resources in Rails 3?

in config/routes.rb: resources posts do resources comments end resources pictures do resources comments end I would like to allow for more things to be commented on as well. I'm currently ...
6
votes
4answers
1k views

Rails: Nested resources conflict, how to scope the index action depending on the called route

Imagine you have two defined routes: map.resources articles map.resources categories, :has_many => :articles both accessible by helpers/paths articles_path # /articles category_articles_path(1) ...
5
votes
2answers
239 views

REST Complex/Composite/Nested Resources

I'm trying to wrap my head around the best way to address concepts in a REST based API. Flat resources that don't contain other resources are no problem. Where I'm running into trouble are the complex ...
5
votes
4answers
6k views

form_for with nested resources

I have a two-part somewhat noob question about form_for and nested resources. Let's say I'm writing a blog engine and I want to relate a comment to an article. I've defined a nested resource as ...
4
votes
3answers
402 views

Rails Nested Singular Resource Routing

I have a simple User model with a singular nested Profile resource so in my routes.rb I have: resources :users do resource :profile, :only => [:edit, :update, :show] end This generates the ...
4
votes
1answer
2k views

Rails nested form with nested resource: update belongs_to association when creating new has_many

Hey guys, I've been beating my head against a wall with a particular use case for nested forms (I'm using Rails 2.3.5). Essentially I have Project and Payment models that looks like this class ...
4
votes
1answer
2k views

RSpec, stubbing nested resource methods

I've got two models: class Solution < ActiveRecord::Base belongs_to :owner, :class_name => "User", :foreign_key => :user_id end class User < ActiveRecord::Base has_many :solutions ...
3
votes
1answer
106 views

Rails 3 Nested resource routes inherits parent constraints, how to avoid it?

It you define constraint on "id" in parent resource: resources :foo, constraints: { :id => /CONST/ } do resources :bar end The nested resource will inherits that constraint for its own id, ...
3
votes
3answers
588 views

DRYing up Rails Views with Nested Resources

What is your solution to the problem if you have a model that is both not-nested and nested, such as products: a "Product" can belong_to say an "Event", and a Product can also just be independent. ...
3
votes
2answers
2k views

Rails - link_to, routes and nested resources

As my understanding on nested resources, on edge Rails, should not link_to 'User posts', @user.posts point to /users/:id/posts ? The routes.rb file contains map.resources :users, :has_many ...
2
votes
2answers
48 views

Improperly routed Rails Destroy method on nested resource

I have a List object, with nested Tasks. I have created a page that displays individual tasks, and also a page that allows a user to edit individual tasks. I now want to add the ability to delete a ...
2
votes
1answer
268 views

Testing nested resources with RSpec

I am trying to create tests for nested resources in Rails. The relevant route definition is: resources :communities do resources :contents, :type => 'Content' end Using RSpec and factory_girl, ...
2
votes
3answers
167 views

Rails 3 - Best way to handle nested resource queries in your controllers?

If there's one thing I've learned about Rails 3 is if I'm having a hard time doing something, I'm probably doing it wrong. So I'm looking for help. I have a few models which are related in a many to ...
2
votes
2answers
511 views

Rails 3.1 has_one nested resource: routing not generating “all” paths

I have a has_one relation: # supplier.rb has_one :presentation ... # presentation.rb belongs_to :supplier ... and the folowing nested routes for them: # routes.rb resources :suppliers do ...
2
votes
1answer
94 views

Rails 3 routing: Avoiding Deep Nesting

Today I realised I'd gotten a little carried away with nested resources: resources :organisations do resources :studies do resources :settings end end The Rails guidelines (and my own ...
2
votes
1answer
153 views

Ruby / Rails - AJAX pagination of nested resources - How do I determine the parent resource?

My model has Posts, Users, and Comments. Users can leave Comments on/about Posts. Every Comment belongs to a User and a Post. Therefore, the Comment model has a user_id field and a post_id field. ...
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
582 views

Rails 3 nested resources with users (Devise) structure

I'm having general structural issues with Rails 3 and the new routes.rb is getting me a bit confused. Thanks for any help or guidance. I have a forum application with nested resources. There are ...
2
votes
2answers
360 views

Problem with routes in functional testing

I'm making a simple test project to prepare myself for my test. I'm fairly new to nested resources, in my example I have a newsitem and each newsitem has comments. The routing looks like this: ...
2
votes
1answer
558 views

Rails RESTful delete in nested resources

Okay, so here's an example scenario. There is a student resource resources :students, and students has and belongs to many collections: resources :clubs, resources :majors, etc. So we can set up our ...
2
votes
2answers
534 views

Rails - nesting resource with two parents

Say I have a child model with two parent models: Event has_many tickets Person has_many tickets Ticket belongs_to Event Ticket belongs_to Person Routes are mapped so Ticket always nests within ...
2
votes
1answer
2k views

How to use will_paginate with a nested resource in Rails?

I'm new to Rails, and I'm having major trouble getting will_paginate to work with a nested resource. I have two models, Statement and Invoice. will_paginate is working on Statement, but I can't get ...
1
vote
2answers
39 views

Dropping second model name in nested resource route

I'm using slugs for IDs, so wanting URLs like /songs/radiohead/karma-police instead of /artists/radiohead/songs/karma-police. Slugs can be achieved with: def to_param slug end But how is there ...
1
vote
2answers
39 views

Routing error calling “new” method with nested resource

I have two nested resources: class Customer < ActiveRecord::Base has_many :locations, :dependent => :destroy accepts_nested_attributes_for :locations end class Location < ...
1
vote
2answers
80 views

Nested resource in Rails3, no route match

I have a nested route in rails 3 mapped as resources :maps do resource :versions member do post 'share' get 'share' end end but when i try to connect to ...
1
vote
1answer
39 views

Rails nested resources available in another context

I plan on having galleries with nested images, so images belong in a gallery. I would then like images to have a Boolean option to determine whether or not a particular image shows up on the front ...
1
vote
2answers
88 views

Combining shallow and non-shallow routes on a single Rails resource

Let's say I have a Magazine model and Ad model, such that Magazine :has_many => :ads. I have setup my nested resource routing as follows: resources :magazines do resources :ads, :shallow => ...
1
vote
1answer
159 views

ActiveRecord building for nested resource

(NOTE: Source code here https://github.com/cthielen/dss-evote) I've got a simple voting application. A survey is the set of questions to vote on, a ballot is a per-user instance of their preferences, ...
1
vote
2answers
102 views

rails : routes in nested resources

I use nested resources #route.rb resources :users do resources :posts end and with #route.rb match '/:username' => 'users#show', :as => :user I change /user/id to /username but, ...
1
vote
1answer
102 views

Nesting Resources 3 Levels Deep

I have an idea of what is going wrong, but am having trouble fixing it. To explain my situation again, I have 3 elements : Jobs, Questions and Answers . All of the relationships are set up below. ...
1
vote
1answer
113 views

form for nested resource

I have gone through tons of the form_for nested resource questions and can't get any of the solutions to work for me. I figured its time to ask a personalized question. I have two models, jobs and ...
1
vote
2answers
90 views

Rails nested rources and routes and how to set them up in route.rb

I think I have a handle on nested routes (great url helpers, and access and much more) and nested resources in forms with accepts_nested_attributes_for but what do I use in routes as I see both: ...
1
vote
1answer
186 views

Rails nested resources (many levels) Class treated as Module

These are my models: class Company < ActiveRecord::Base has_many :products end class Product < ActiveRecord::Base belongs_to :company has_many :prices end class Price < ...
1
vote
1answer
606 views

Rails Namespace vs. Nested Resource

Let's say my app has two models, Foo and Bar. Foo optionally belongs_to Bar. Right now I can look at a single Foo, or search for a particular Foo, and the FoosController handles all that. My URLS ...
1
vote
1answer
678 views

Rails 3 - Nested Resources Routing - One to One relationship

Having some trouble with some nested resources routing. What I'm trying to do is link to a user's profile page for editing purposes. In my view it is written as: <%= link_to "Edit Profile", ...
1
vote
1answer
507 views

How to get the form_for working for a nested resource - with a slight twist

I'm looking to have the child model added/edited on it's own form, not within the parent form. any example I have seen has the child added on the same form as the parent. Since I'm adding the twist ...
1
vote
1answer
125 views

Using nested controllers

Since my site had an admin section and a normal (front-end user) section, I needed to structure the articles controller in such a way that it was RESTful. So what I did was , have 2 articles ...
1
vote
4answers
910 views

Finds in Rails 3 and ActiveRelation

I'm trying to understand the new arel engine in Rails 3 and I've got a question. I've got two models, User and Task class User < ActiveRecord::Base has_many :tasks end class Task < ...
1
vote
3answers
662 views

Rails “NoMethodError” with sub-resources

I'm a newbie Rails developer who is getting the following error when trying to access the 'new' action on my CityController: undefined method `cities_path' for ...
1
vote
2answers
2k views

Nested Resource testing RSpec

I have two models: class Solution < ActiveRecord::Base belongs_to :owner, :class_name => "User", :foreign_key => :user_id end class User < ActiveRecord::Base ...
1
vote
1answer
357 views

Nested routes with Subdomain-fu

I have some standard nested routes in my app, and I want to implement subdomains using the subdomain-fu gem. So I'm currently doing this: example.com/stores/name_of_store/products/name_of_product ...
1
vote
3answers
4k views

Rails nested resources

Here's the routes.rb: map.resources :assignments, :shallow => true do |assignment| assignment.resources :problems end How do i get the url to edit a problem ...
0
votes
1answer
30 views

Nested resource view spec seems to be referring to a non-existent route

Rails 3.1.0 Rspec 2 In a view spec for a nested resource, do I need to instantiate/stub the parent resource before I stub the nested resource? I am asking this because all my view specs are ...
0
votes
1answer
28 views

How to pass user_id to nested_resource model?

I have a small project setup with devise and cancan. There are User, Project, Responsible and Task Models. Project has nested Tasks. Each Project is assigned to one or multiple users. The task model ...
0
votes
1answer
35 views

CanCan deeply nested resources

I have a routes.rb that looks like this: resources :restaurants, :shallow => true do resources :orders do resources :foods end resources :categories do resources :foods end end ...
0
votes
1answer
35 views

Rails routes generate Post request for New action in nested resources

I have the following nested resources: resources :listings do resources :offers do member do put "accept" put "reject" end end end In my listings/show.html.haml, I ...
0
votes
0answers
68 views

Testing Nested Resources Controller with RSpec - count doesn't change by 1

I have nested resources: resources :portfolios do resources :asset_actions end And following RSpec Controller: asset_actions_controller_spec.rb before(:each) do @portfolio = ...
0
votes
0answers
28 views

Build link_to in shared partial for two different nested resources

Here's a good one: namespace :dashboard do resources :users do resources :photos resources :resumes resources :comments # (polymorphic) end resources :employers do ...
0
votes
0answers
66 views

Rails 3 nested resources, polymorphic associations and forms

The question at hand deals with the key topics: Nested Resources Polymorphic Associations Forms We will assume we have Photos and Articles, both of which have Comments. This creates our ...
0
votes
2answers
99 views

Rails 3.1 nested resource with composite primary key (id + parent_id)

Let's assume I need two resources nested in the routes.rb as follows: resources :post do resources :comment end By convention comments.id will be the comments primary key and comments.post_id ...

1 2