[Rails-core] Re: No seriously, sort this out.

2011-01-11 Thread SpaceGhost
I appreciate the thought. I'm sorry if I offended you with explaining the route which I would take if I were given ops. Perhaps it would be better served if I had said something less political in nature or you were a bit less reprehensible of my actions? I'd love to make a better impression, but I'

Re: [Rails-core] Re: No seriously, sort this out.

2011-01-11 Thread Lunks
"If I were made part of the team for ops, then I'd feel a bigger responsibility to the channel and take greater care that others not interpret my words in negative ways" If you guys vote me, I'll run for president and do nice things. Seriously, this is not the mailing list where you are supposed

[Rails-core] Re: No seriously, sort this out.

2011-01-11 Thread SpaceGhost
I'd like to nominate myself and Remear. I'm SpaceGhostC2C. I've been in #RubyonRails for a month and I spend about 16-20 online and available on IRC and although I'm not as pro as Radar is with Rails, I have knowledge and background in rails and know where to go for resources and help in terms of

Re: [Rails-core] Re: Array#uniq doesn't take block... Why?

2011-01-11 Thread Adrian Perez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/26/2010 06:11 PM, Shou wrote: >>> Collin > Company.all.map(&:name).uniq returns an array of strings but what I > want here is an array of company objects. So that's not what I want > here. > >>> Xavier > I under the idea of core extensions. > >

Re: [Rails-core] No seriously, sort this out.

2011-01-11 Thread Mark Turner
On Tue, Jan 11, 2011 at 3:07 PM, Jeremy Kemper wrote: > > Added. > > Let's hear some other nominations and seconds. I'd like to nominate myself (amerine). I get fairly annoyed of the spam and would like to help control that trash. -- You received this message because you are subscribed to the

Re: [Rails-core] No seriously, sort this out.

2011-01-11 Thread Jeremy Kemper
On Tue, Jan 11, 2011 at 6:48 AM, Andy Lindeman wrote: > Thoughts on adding Radar (Ryan Bigg), alindeman (me), and/or other > trusted folks who contribute to the IRC channel?  If so, can one of > the folks above make it happen? Added. Let's hear some other nominations and seconds. -- You receiv

[Rails-core] Re: No seriously, sort this out.

2011-01-11 Thread Ryan Bigg
I'm online right now. Didn't think I needed to be online for that to happen. -- Ryan Bigg On Wednesday, 12 January 2011 at 7:20 AM, Michael Koziarski wrote: > > > Thoughts on adding Radar (Ryan Bigg), alindeman (me), and/or other > > trusted folks who contribute to the IRC channel? If so, can o

Re: [Rails-core] No seriously, sort this out.

2011-01-11 Thread Michael Koziarski
> Thoughts on adding Radar (Ryan Bigg), alindeman (me), and/or other > trusted folks who contribute to the IRC channel?  If so, can one of > the folks above make it happen? I've added images to the op list as well and when Radar is online I'm happy to add him too. -- Cheers Koz -- You receive

[Rails-core] Should set_inverse_instance be called earlier in add_record_to_target_with_callbacks ?

2011-01-11 Thread Joseph Palermo
Right now when you add a record to an association with << it first saves the model, and THEN sets the inverse_of association afterward. This is done inside add_record_to_target_with_callback inside association_collection.rb. Is there any reason set_inverse_instance isn't called before the save of

Re: [Rails-core] Should includes with general association name work?

2011-01-11 Thread Jon Leighton
This looks like a bug to me. You should try a few things: * Can you repro on master? * What about doing where('referrals.employer_representative' => ...) - does that make a difference? * Try doing the query manually (i.e. Users.includes(..).where(...)) - I doubt the scope is the problem but good t

[Rails-core] Should includes with general association name work?

2011-01-11 Thread Rick DeNatale
Hi, I'm wondering if this is an arel bug or should be a new feature. I've got a model with the following: has_many :recommendations, :class_name => "Referral", :foreign_key => :candidate_id scope :recommended_to, lambda {|er| joins(:recommendations).where(:referrals => {:employer_repres

[Rails-core] [PATCH] Polymorphic belongs_to association with :conditions issues

2011-01-11 Thread Ernie Miller
Hey all, Could use a few eyes on a couple of very simple patches at https://rails.lighthouseapp.com/projects/8994/tickets/6262 if any has some time. The issue (from the ticket description): If you define a polymorphic belongs_to association and it has conditions on it, those conditions cause a

Re: [Rails-core] No seriously, sort this out.

2011-01-11 Thread Andy Lindeman
I'm bumping this up again because I still think it's a problem. irc.freenode.net#rubyonrails needs more folks on its access list that are more consistently available on the channel to handle problems. These are the folks who have access right now: noradio, nzkoz, sam-, bitsweat, madrobby, lifo, mi

[Rails-core] Re: Replacement for AV::TestCase

2011-01-11 Thread Nick Sutterer
Aaron- thanks! I added comments to answer your questions. On 10 Jan., 23:50, Aaron Patterson wrote: > On Mon, Jan 10, 2011 at 01:32:11PM -0800, Nick Sutterer wrote: > > Hey friends, > > > here's a replacement for ActionView::TestCase, I called it > > AV::HelperTest. In the commit I already change