1
vote
3answers
653 views
How do I code a rake task that runs the Rails db:migrate task?
I would like to run db:migrate VERSION=0 and then db:migrate inside of my own rake task. I am confused about how to do this. Do I need a special require statement? My rake task will reside in t …
1
vote
2answers
158 views
Why does initation of [rake db:migrate] run syntax check on rake tasks in the lib/tasks directory?
I have a rake task file for a RubyOnRails app which resides in the lib/tasks directory. Running [rake db:migrate VERSION=0] seems to force the compiler to check syntax in the lib/tasks files. If …
1
vote
1answer
102 views
How deep (how many tables away) can my [has_many :through] association “path” be?
The following db design example is given in the Agile Rails book to teach the has_many :through code...
[Article]----<[Readings]>----[User]
This is all quite easy to understand a …
2
votes
1answer
114 views
Can I interact with Rails models within a Capistrano task?
I often used Rake tasks that are dependent upon the Rails environment task having loaded. I then interact with Rails Models within the Rake tasks. Can I do this in Capistrano?
…
1
vote
5answers
334 views
How can I detect if an html page element exists by using RoR RJS Template code?
I tried several ways but all are failing.
…
