Tagged Questions
The dynamic-attributes tag has no wiki summary.
39
votes
1answer
10k views
Rails find_or_create by more than one attribute?
There is a handy dynamic attribute in active-record called find_or_create_by:
Model.find_or_create_by_<attribute>(:<attribute> => "")
But what if I need to find_or_create by more than ...
5
votes
3answers
4k views
Dynamic attributes with Rails and Mongoid
I'm learning MongoDB through the Mongoid Ruby gem with Rails (Rails 3 beta 3), and I'm trying to come up with a way to create dynamic attributes on a model based on fields from another model, which I ...
2
votes
1answer
735 views
How Do I make dynamic-attributes Work in JSP Tag Files?
So according to my JSP reference book, as well as every other reference I can find on the web, I'm supposed to be able to do something like:
<%@ tag dynamic-attributes="dynamicAttributesVar" %>
...
0
votes
2answers
49 views
Using method missing in Rails
I have a model with several date attributes. I'd like to be able to set and get the values as strings. I over-rode one of the methods (bill_date) like so:
def bill_date_human
date = ...
0
votes
2answers
274 views
How to design a system like google base with dynamic attributes? in Ruby on Rails
I am wanting to create an application that can allow users to add products for sale.
I want to make it so that a user can add whatever type of product he/she likes and let them also create stored ...