Erica H. wrote in post #975896: > Hi, > > Does anyone know if there is a way to manage two very similar Ruby on > Rails projects with minor differences using subversion, so that both > projects could be updated at once? Sometimes only a file in one of the > projects would need to be updated, but often the change applies to both > projects.
I'd advise you to leave Subversion for Git (there are conversion tools). Among its many other benefits, Git has sensible branching and merging (which Subversion lacks), so what you ask will be easier. Alternatively, if you can extract the differences to a config file, and just keep the codebases the same, maintenance would be even easier. But this question is basically off topic here, and should be asked on a SVN or Git list. > > Thanks, > > Erica Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

