[Rails-core] Change to has_many :through associations

2006-03-24 Thread Rick Olson
Hi everyone. I've made a default change to has_many :through associations that I felt was important to make before they're released. This is after some tickets and confusion I've seen regarding has_many :through. class Connection < ActiveRecord::Base belongs_to :user belongs_to :channel end

Re: [Rails-core] How to send cookie only once?

2006-03-24 Thread Kyle Maxwell
On 3/23/06, Michael Koziarski <[EMAIL PROTECTED]> wrote: > Does the 'session' method do what you need? No. I'm not looking to (selectively) disable session handling. I'm looking to keep rails from sending redundant cookies. If you are in the middle of a session, the client/browser will send you

Re: [Rails-core] [PATCH] STI-compatible test fixtures

2006-03-24 Thread Corey Donohoe
On 3/23/06, Wilson Bilkovich <[EMAIL PROTECTED]> wrote: I've been bugged recently by the way table names are resolved for test fixtures.A side-effect of the current method is that you have to name all ofyour fixture accessors after the table, rather than after the class name.This means that things

Re: [Rails-core] [PATCH] STI-compatible test fixtures

2006-03-24 Thread Wilson Bilkovich
On 3/24/06, Corey Donohoe <[EMAIL PROTECTED]> wrote: > On 3/23/06, Wilson Bilkovich <[EMAIL PROTECTED]> wrote: > > I've been bugged recently by the way table names are resolved for test > fixtures. > > A side-effect of the current method is that you have to name all of > > your fixture accessors af