[Rails] Re: How to share tables between Ruby Apps...

2009-01-27 Thread alberto
How can we share this table(email details) across several Ruby apps? Sharing a table is straight forward. If they are in the same database, you simply call the class methods for this utility functionality. If the table exists in another database, you add that database to the database.yml file.

[Rails] Re: How to share tables between Ruby Apps...

2009-01-27 Thread Mohit Sindhwani
LaughingNinja wrote: Hi, We are in the process of rewriting our intranet applications in Ruby. We have one complete that requires an email invite being sent. We want to write another app that simply looks for unsent emails and sends them. This will be used by several ruby apps. How can we