when starting Ruby on Rails programming, I will use
rails first
rails second
and try out things in these "first" and "second" projects
but as they get more mature i want to check them into SVN and develop further, so can i rename them into
"superapp"
or
"web30"
and check into SVN and develop further without any side effects? I don't want to rename them and generate more controllers and models and do migration and one day found out that the project is messed up and caused problem when going to production / deployment.
-
Not a problem. Rails doesn't care about the name of the directory it's stored in (or the path to it).
From Burke -
If you have to merge, merge them first and then commit.
Rails don't mind about project names so don't worry about that. If you need to rename something already on a svn, don't forget to use the rename function.
From marcgg -
I have not encountered any problems while doing such renames.
In fact I have just created a project and verified that after the rename, the RAILS_ROOT variable is automatically updated. You can verify this using script/console.
From gdelfino
0 comments:
Post a Comment