Creating a legacy rails app
Question:
When you have the latest and greatest version of Rails installed, how do you create a new app using an older version of Rails?
Answer:
# rails 3:
rails _3.0.11_ new myapp
# rails 2:
rails _2.0.11_ myapp
Thanks to this stack overflow question.