Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to configure Rails so that after running rails g migration name_of_migration, it automatically opens that file in TextMate?

share|improve this question
yeap, you can hack the source %) – rbdev Dec 16 '10 at 16:24

2 Answers

No, but you can generate migration in Textmate, using the following shortcut -

"Shift + Control + M"

share|improve this answer
Doesn't work for me. Do I need a special bundle or something? – CharlieMezak Sep 28 '11 at 20:19
Doesn't work for me either--using Textmate 1.5.10. – ideaoforder Jan 16 '12 at 15:22
you need the ruby on rails bundle – Rishav Rastogi Jan 16 '12 at 19:43

You could create an alias with this:

alias last_migration='ls db/migrate/* | tail -n1 | xargs open -a "Textmate"'

and then run it from your terminal:

last_migration
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.