Hi all, I need to create functionality to access svn repository in my application. I tried subversion-ruby gem (which is very poorly documented) and succeeded partially. As basic operation I need to perform ''svn list https://my.remore.repo.com''. I made to perform svn list on local copy but failed to make the same on remote. btw. I based on unit tests here: http://svn.apache.org/repos/asf/subversion/trunk/subversion/bindings/swig/ruby/test/ Does anybody know how to do this? Or know where is any documentation for this gem? Or know about any other useful gem to operate on svn repos (with documentation please)? Regards, Mateusz -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Mateusz Kyc wrote in post #949757:> I need to create functionality to access svn repository in my > application. I tried subversion-ruby gem (which is very poorly > documented) and succeeded partially. As basic operation I need to > perform ''svn list https://my.remore.repo.com''. I made to perform svn > list on local copy but failed to make the same on remote. btw. I based > on unit tests here: >http://svn.apache.org/repos/asf/subversion/trunk/subversion/bindings/swig/ruby/test/> > Does anybody know how to do this? Or know where is any documentation > for this gem? Or know about any other useful gem to operate on svn > repos (with documentation please)?Is is plausible in your case to just use the command line svn client? #!/usr/bin/env ruby list = `svn list https://my.remore.repo.com` -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.