[Rails] How to create Rails models w/ multiple complex associations?

2010-03-05 Thread Chris Benson
id : int email_address : string email_address_types id : int email_address_type: string I need the models to be fully functional, and not limited by things like :find_by_sql. How do I create the associated models that make this possible? Thanks! Chris Benson ch...@chrisbenson.com -- Posted via

[Rails] Disable routing?

2009-04-05 Thread Chris Benson
I have a Rails application that a couple of folders in the root (of public) for Wordpress and Mediawiki that I want to completely exclude from Rails routing. How do I have the routing function of my Rails app ignore anything in the /blog or /wiki directories? Example: When someone types in

[Rails] Re: Disable routing?

2009-04-05 Thread Chris Benson
Thanks Fred, but it's a shared hosting environment, and I don't have access to anything outside my /home area. I'm looking for a way to tell Rails routing, Ignore these two directories. On Apr 5, 7:07 am, Frederick Cheung frederick.che...@gmail.com wrote: On Apr 5, 8:03 am, Chris Benson ch