I want to run a standalone ruby script in which I need my RoR environment to be used. Specifically, I need my models extending ActionMailer and ActiveRecord. I also need to read the database configuration from my database.yml. How do I go about it?
|
|
The easiest way is to change the shebang of your script from :
to
Et voilĂ , your script will be run with the full rails environment loaded. You can also run your script as |
|||
|
|
|
|
Check out this thread: http://stackoverflow.com/questions/293302/how-do-i-run-ruby-tasks-that-use-my-rails-models Essentially it boils down to:
Have fun! |
|||
|
|
|
|
I think the best way to do this is to make it a rake task.
The [:environment] stanza loads the rails environment. |
|||
|
|
