|
Git
IntroductionGit manages changes for the rubyripper project. With each 'commit' (change) a diff will be created against the previous revision. When hunting down some bugs, it can be usefull to get the latest revision to see if it fixes your particular problem. Due to the scripting characteristic of ruby you do not have to install it on your system just to run rubyripper! Here follows the commands you have to run in a terminal/konsole. You can easily replace $HOME with any directory you have access to. And of course you need to install git before doing this! Usefull Git commandInitial checkout is done with: cd $HOME; git clone https://code.google.com/p/rubyripper/ Hereafter I assume you've already executed cd $HOME/rubyripper.
Notice there also is a nice webview on the rubyripper site: http://code.google.com/p/rubyripper/source/list Notes about the master branch (november 2011)
To install rspec: rgem install rspec To install cucumber: rgem install cucumber Create / update language files (optional)Make sure you've installed the dependency list in the README file
Run rubyripperMake sure you've installed the dependency list in the README file
Read more about git
|