Get Up and Running on Warehouse Post to delicious
Installing the subversion bindings takes about 5 minutes. You can check out the video above and follow along with the article below.
Installing the Ruby Subversion Bindings
-
Get and install the latest SWIG
You can ftp this to your server, or use a tool like
wgetorcurl.wget http://internap.dl.sourceforge.net/sourceforge/swig/swig-1.3.31.tar.gz tar xzvf swig-1.3.31.tar.gz cd ./swig-1.3.31 ./configure make sudo make install -
Install the latest version of Subversion
NOTE: You do not have to rebuild Subversion if you choose not too, but you will need the Subversion source code corresponding to your server's svn version in order to install the Ruby bindings.
Again, you can ftp this to your server or use wget or curl.
wget http://subversion.tigris.org/downloads/subversion-1.4.4.tar.gz tar xzvf subversion-1.4.4.tar.gz cd subversion-1.4.4You can skip the following block of code if you do not wish to build subversion.
./configure --prefix=/usr/local --with-openssl --with-ssl --with-zlib make sudo make installNow, install the Ruby subversion bindings
make swig-rb sudo make install-swig-rb -
See if it works!
Run this command from your console:
ruby -e 'puts require("svn/core")'
Having trouble?
No need to worry! We can help. Come talk to our friendly community of folks and we'll see if we can't get you up and running together.
Talk To Me Now!
If you've got an IRC client, you can join us in #activereload on irc.freenode.net. We'll talk about ninjas, code, gaming and more ninjas.

