What''s the reason that script/server loads your .irbrc for every page request? It seems dangerous to me for a couple of reasons, one is that it might make your development environment drastically different than your production environment (especially if you use GuessMethod or any other method_missing/const_missing hacks in irb). And it can fill your server terminal window with tons of unrelated-to-your-app error messages about undefined methods on nil if you do something like configure an irb prompt (with IRB.conf[:PROMPT]). I''ve resorted to wrapping my entire irbrc in unless $0 == ''script/ server'' ... end, but that seems like an inelegant solution. So, why does it do it? Thanks, Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---