Once one has created an svn repository for a rails project, how do you manage keeping it up to date when many additional files are auto generated. For example, if one creates the rdocs, will it require manually adding each new generated file to the repository? I would assume thinks like log files, sessions (and what else?) that will not be the same for two different svn repository checkouts be excluded from the repository. What about vendor plugins? --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Most of the generator scripts take a --svn option, which adds the generated files to the repository. Yes, it is possible and desireable to exclude log files and temp files. There''s a wiki article that discusses the questions your raise at length: http://wiki.rubyonrails.org/rails/pages/HowtoUseRailsWithSubversion On Feb 14, 1:03 am, "Tony K." <tony.kr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Once one has created an svn repository for a rails project, how do you > manage keeping it up to date when many additional files are auto > generated. For example, if one creates the rdocs, will it require > manually adding each new generated file to the repository? > > I would assume thinks like log files, sessions (and what else?) that > will not be the same for two different svn repository checkouts be > excluded from the repository. > > What about vendor plugins?--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Tony K. wrote:> What about vendor plugins?Vendor plugins can be installed via svn-externals. This ruby script/plugin install -x http://url.com will stick a link to the plugin repos in your vendor folder for you, as well as install the plugin. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---