30
votes
16answers
2k views
Why all the Active Record hate?
As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on Active Record.
Often, people say that it …
19
votes
4answers
445 views
How to model interpretations of rap music
I just started working on a website that will help people understand what rappers are talking about. Users will see the lyrics to a rap song and they'll be able to click certain ly …
9
votes
1answer
121 views
Whats the best method of creating “walled gardens” for multiple clients inside your database?
I'm setting up a SaaS style website wherein I will have multiple clients all managing their workflows and data on the same site -- and thus the same database.
I'm not even sure if …
9
votes
4answers
1k views
What is the best way to set default values in ActiveRecord?
What is the best way to set default value in ActiveRecord?
I see a post from Pratik that describes an ugly, complicated chunk of code: http://m.onkey.org/2007/7/24/how-to-set-defa …
9
votes
9answers
4k views
Rails model without database
I want to create a Rails (2.1 and 2.2) model with ActiveRecord validations, but without a database table. What is the most widely used approach? I've found some plugins that clai …
8
votes
1answer
446 views
Experiences With Active Objects ORM for Java?
I'm looking at ORMs for Java and Active Objects caught my eye. Apparently, it was inspired by Rails' ActiveRecord. Based on what I've read, this approach seems to solve a lot of pr …
8
votes
1answer
157 views
How can I find a model’s relationships?
I want to, when given a particular model, return all the related models it is associated with. For example:
class Dog < ActiveRecord::Base
has_many :bones
belongs_to :mast …
7
votes
6answers
147 views
When (if) to consolidate ActiveRecord migrations?
As I move through the iterations on my application*(s) I accumulate migrations. As of just now there are 37 such file, spanning about 9 months' activity.
I'm considering taking my …
7
votes
4answers
180 views
How can I see the SQL ActiveRecord generates?
I'd like to check a few queries generated by ActiveRecord, but I don't need to actually run them. Is there a way to get at the query before it returns its result?
7
votes
2answers
3k views
Rails named_scopes with joins
I'm trying to create a named_scope that uses a join, but although the generated SQL looks right, the result are garbage. For example:
class Clip < ActiveRecord::Base
na …
6
votes
3answers
241 views
Is it necessary to unit test ActiveRecord validations?
Is it necessary to unit test ActiveRecord validations or they are well-tested already and hence reliable enough?
6
votes
4answers
762 views
override ActiveRecord attribute methods
An example of what I'm talking about:
class Person < ActiveRecord::Base
def name=(name)
super(name.capitalize)
end
def name
super().downcase # not sure why you'd …
6
votes
4answers
317 views
What’s the best way to implement gmail style “undo” in Rails?
I think it important to have an "undo" method ala gmail when destroying records instead of displaying an annoying popup that says, "Are you sure?".
The way that I've implemented t …
6
votes
5answers
1k views
Database sharding and Rails
What's the best way to deal with a sharded database in Rails? Should the sharding be handled at the application layer, the active record layer, the database driver layer, a proxy …
6
votes
2answers
925 views
How would you test observers with rSpec in a Ruby on Rails application?
Suppose you have an ActiveRecord::Observer in one of your Ruby on Rails applications - how do you test this observer with rSpec?
