Since many of the plugins that I have are from an svn repository and contain .svn folders, what is the proper way to add the plugins to my svn repository without getting errors thrown? Thanks. -- 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 -~----------~----~----~----~------~----~------~--~---
You can clean out the svn folders like this:
find . -name ".svn" -exec rm -rf {} \;
Or, if you want to keep them as an SVN working copy, you can set them
up as svn:externals: http://svnbook.red-bean.com/en/1.0/ch07s03.html
OR! You can use Piston: http://www.rubyinside.com/advent2006/12-piston.html
--Jeremy
On Dec 24, 2007 1:01 AM, Chris Olsen
<rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>
wrote:>
> Since many of the plugins that I have are from an svn repository and
> contain .svn folders, what is the proper way to add the plugins to my
> svn repository without getting errors thrown?
>
> Thanks.
> --
> Posted via http://www.ruby-forum.com/.
>
> >
>
--
http://www.jeremymcanally.com/
My books:
Ruby in Practice
http://www.manning.com/mcanally/
My free Ruby e-book
http://www.humblelittlerubybook.com/
My blogs:
http://www.mrneighborly.com/
http://www.rubyinpractice.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
-~----------~----~----~----~------~----~------~--~---
Jeremy McAnally wrote:> You can clean out the svn folders like this: > > find . -name ".svn" -exec rm -rf {} \; > > Or, if you want to keep them as an SVN working copy, you can set them > up as svn:externals: http://svnbook.red-bean.com/en/1.0/ch07s03.html > > OR! You can use Piston: > http://www.rubyinside.com/advent2006/12-piston.html > > --JeremyThanks for the quick reply. For now I will just remove the .svn files. BTW Kudos on your Humble Little Ruby Rook. I have recommended it a couple times to friends looking to learn ruby. -- 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 -~----------~----~----~----~------~----~------~--~---
I think the proper way is `script/plugin install -x <name/url>`. That does not copy/export the plugins but puts them into the "svn:externals" property of 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 -~----------~----~----~----~------~----~------~--~---
On Mon, 24 Dec 2007 07:01:55 +0100, Chris Olsen wrote:> Since many of the plugins that I have are from an svn repository and > contain .svn folders, what is the proper way to add the plugins to my > svn repository without getting errors thrown?I use svn too and curious about your question. Could you make the question a bit more concrete? thanks, Thufir --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---