Monserrat Foster wrote in post #1126580: > Hello! I'm fairly new to Ruby and Rails, and currently I don't have any > knowledge on interacting with the server's shell or a SVN server, but > now I > have to develop an app where admins allow/restrict access to files and > folders from the app and some sort of version control of the files is > need > so I thought, to install a SVN server also and from the app allow users > to > access files they've been authorized to. I've been searching about this > but > I can't seem to find a concrete answer. Could some please tell me if > this > is possible and if so, point me in the right direction, what sort of > stuff > should i look into first?
Issuing system commands is as simple as: system svn <command> Or when you want to capture the command's standard output into a string: out = `svn <command>` # These are back tics And, if you decide to use a SCM as a backed to store your files what not choose a SCM that isn't a steaming pile of sh*t. Like git (http://git-scm.com). Just saying... -- 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/29025eac8521b1bff79a115985c0a4c9%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.

