Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
193 views

When to use a virtual attribute or pass data in a hash in Rails 3

In my application, I have a Widget model, a Feature model with a has_many through association by WidgetFeature table. As per the requirements, when I am sending a WidgetFeature object, I should ...
4
votes
3answers
1k views

Rails virtual attribute search or sql combined column search

I have a user model with attributes 'first' and 'last' So for example User.first.first #=> "Charlie" User.first.last #=> "Brown" This User model also has a virtual attribute 'full_name' #user.rb def ...
2
votes
1answer
1k views

How do I validate a virtual attribute in an ActiveRecord model?

I am using virtual attributes to save tags in an Entry model from a comma-separated textbox in my form (based on Railscasts #167): class Entry < ActiveRecord::Base has_many :entry_tags ...
2
votes
1answer
1k views

Signaling validation errors in assigning a virtual attribute?

This is a Rails/ActiveRecord question. I have a model which basically has to represent events or performances. Each event has many attributions: an attribution is basically something like "In this ...
1
vote
1answer
37 views

Rails 3 Nested Attributes?

I'm a rails newbie, so bare with me on this one... In short, I have an application that tracks services(servers) with IP addresses. What I'm trying to do is set it up so that when I create a new ...
1
vote
2answers
90 views

What would a default getter and setter look like in rails?

I know that I can write attr_accessor :tag_list to make a virtual attribute tag_list for an object in Rails. This allows there to be a tag_list attribute in forms for the object. If I use ...
1
vote
1answer
112 views

Ruby on Rails - Searching virtual attributes (tags)

I know I've asked about a million Ruby on Rails questions today - but hopefully this should be my last for a little while :P My issue is that I've set up a Virtual Attribute tagging system as shown by ...
1
vote
1answer
41 views

Setting model association in Rails - saving 'from grandchild side'

I'm a Ruby newbie so please forgive if some of these is complete ignorance. I want to set following associations: Transcription belongs to Composition Composition has many transcriptions, belongs to ...
1
vote
2answers
54 views

How Do I Parse a Text Field and then Write it to Multiple Models in Ruby on Rails?

I have simple project+task application I am creating in Rails 3.1.RC4. It will have project names, tasks and each task will be assigned to a person. The project form is simple with only two boxes (1) ...
1
vote
1answer
314 views

Rails 3: creating a validation with :if statement

Hi I'm trying to setup a validation that is only called in a specific form view, to do this I'm trying to create a hidden_field for a virtual attribute on the form and set this to a value, then ...
1
vote
1answer
279 views

Rails Validating on a virtual attribute, setting form error. Railscast #32

I'm basically attempting to implement the solution from Railscast #32, modernized for Rails 3.0.7 http://railscasts.com/episodes/32-time-in-text-field class Task < ActiveRecord::Base ...
1
vote
1answer
140 views

I have identical getter/setter code used for multiple virtual attributes - can I refactor with eval?

I have written customised getter and setter methods for virtual attributes to convert decimals into integers for storage in a database. This is one of three virtual attributes (annual_fee_dollars) ...
1
vote
2answers
78 views

What's the best Rails convention for this?

Let's say that you have a resource that is created and displayed entirely within the view of another resource (eg. comments or tags). Should you still make it it's own resource, or would it be a ...
1
vote
1answer
1k views

rails 3 find or create based on multiple fields

I am trying to implement a simple tagging system using a tag virtual attribute on a notes object. a tag contains a label and a user_id. what I would like to do is update the HABTM to relationship to ...
1
vote
2answers
233 views

update value of virtual attribute in view is not updating model

I'm updating the value of a virtual attribute in my view but this is not being reflected in the model instance. For example: MyModel.erb attr_accessor_with_default :hello_world, false ...
1
vote
1answer
168 views

Initialize virtual attributes

I have an IncomingEmail model with an attachments virtual attribute: class IncomingEmail < ActiveRecord::Base attr_accessor :attachments end I want the attachments virtual attribute to be ...
1
vote
1answer
1k views

Rails Validating Virtual Attributes

My model looks like this: class Item < ActiveRecord::Base has_many :locations validate :validate_item_location def item_location ...
0
votes
1answer
36 views

rails virtual attributes won't read from form_for submission

I am trying to implement a rails tagging model as outlined in Ryan Bate's railscast #167. http://railscasts.com/episodes/167-more-on-virtual-attributes This is a great system to use. However, I ...
0
votes
0answers
118 views

Mongoid Circular References

So I have a circular reference problem that I don't know how to solve. So the situation is the user has the ability to input a list of multiple films for actors into a text box. The text is held in ...
0
votes
1answer
39 views

STI and virtual attribute inheritance (Rails 2.3)

Say I have an STI relationship, where Commentable is the super class, and NewsComment is the subclass. In Commentable I have: attr_accessor :opinionated def after_initialize self.opinionated = ...
0
votes
1answer
78 views

accepts_nested_attributes_for virtual attributes

I have 2 models: class Invoice < ActiveRecord::Base has_many :invoice_items accepts_nested_attributes_for :invoice_items, :allow_destroy => true end class InvoiceItem < ...
0
votes
2answers
76 views

What is the Correct Ruby on Rails Syntax to Write to a Nested Model within a Virtual Attribute?

Trying to divide and conquer these problems (1, 2) I am still having. I would like to write the first step of a BLT recipe in my nested, many-to-many model from the virtual attribute. Later on I would ...
0
votes
1answer
235 views

Rails 3: Railscast #167 virtual attribute for creating tags - @user.tags

I would like to a tagging system where I can separate the tags by the user's who created them. I followed Railscast #167 about setting up tags using virtual attributes, but that way only lets me call ...
0
votes
1answer
103 views

Rails 3 - Process text input to create multiple models

In the app I'm working on, Courses have many Problems, which in turn have many Steps. Right now there is a form for adding Problems to Courses (and then Steps can be added to those problems). What we ...
0
votes
0answers
206 views

Virtual attributes and custom select in Rails?

I have this long piece of query methods, which works fine if I don't try to return a virtual attribute of "fullname" (from patients), I was wondering how this could be done in Ruby since I would need ...
0
votes
2answers
414 views

Rails - Virtual attribute in form helper

I'm having an odd error with a virtual attribute in a form helper. My model looks like this: class Folder < ActiveRecord::Base ... # VIRTUAL ATTRIBUTES def parent_name self.parent.name ...
0
votes
1answer
204 views

Using named scope with find_or_create_by

I spent some time figuring this out and haven't seen others post on it so maybe this will help someone. Also, I don't have much Rails experience so I'd be grateful for any corrections or suggestions, ...
0
votes
1answer
327 views

after_initialize virtual attribute

I am unable to assign a value to a virtual attribute in the after_initialize method: attr_accessor :hello_world def after_initialize self[:hello_world] = "hello world" end In my view file: ...
0
votes
1answer
194 views

virtual attribute with dates

I have a form which i'd like to simplify. I'm recording a startdate and an enddate, but would like to show the user only a startdate and then a drop down with number of days. But I'm having problems ...
0
votes
1answer
327 views

Can I count based on virtual attribute?

I have the following error: no such column: company_name: SELECT count("contact_emails".id) AS count_id FROM "contact_emails" The model ContactEmail does NOT have a column company_name. I created ...
0
votes
1answer
78 views

How can I get a unique :group of a virtual attribute in rails?

I have several similar models ContactEmail, ContactLetter, etcetera. Each one belongs_to a Contact Each contact belongs_to a Company So, what I did was create a virtual attribute for ContactEmail: ...
0
votes
1answer
422 views

How to create read-only virtual attributes in Ruby models

I would like to create a virtual attribute that will always be included when you do model_instance.inspect. I understand that attr_reader will give me the same thing as just defining an instance ...
0
votes
2answers
217 views

Preference values - static without tables using a model with virtual attributes

Im trying to eliminate two tables from my database. The tables are message_sort_options and per_page_options. These tables basically just have 5 records which are options a user can set as their ...
0
votes
1answer
550 views

Virtual attributes on new models in Rails?

This certain part of my application takes cares of creation of Webshop model for store chains (like H&M) that has one. If the chain has a website that also is a webshop it creates one Webshop ...
0
votes
3answers
143 views

Virtual attributes in plugin

I need some help with virtual attributes. This code works fine but how do I use it inside a plugin. The goal is to add this methods to all classes that uses the plugin. class Article < ...
0
votes
2answers
540 views

ActiveRecord association getting saved before the record in an update

I have an Entry model which has many Tags. Tags are added to an entry by typing them into a textbox on my form, via a tag_names virtual attribute. Before validation on the Entry model, the tag_names ...