Do you know Gource? Gource is a magic visualization tool for source code. It tracks all activities in source code repository to create an animation that represents the its evolution.
http://code.google.com/p/gource/
Very effective to show your work for your partners and bosses.
But... I had bad time to install gource using Mac OS X.
(brew is too a fantastic tool. It allow you install thousands packages almost as easy as debian apt-get). But, for brew...
nano-belt:~$ sudo brew install gource
Also installing dependencies: pcre, glew
==> Downloading ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.tar.bz2
curl: (78) RETR response: 550
Error: Failure while executing: /usr/bin/curl -f#LA Homebrew\ 0.8\ (Ruby\ 1.8.7-249;\ Mac\ OS\ X\ 10.6.8) ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.tar.bz2 -o /Library/Caches/Homebrew/pcre-8.12.tar.bz2
Arrrg... brew can't locate an pcre from remote server. For our luck, brew has a fantastic way to avoid this problem. Simply, create your own formula to brew install pcre:
sudo brew create ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.zip
Version detected as 8.30.
==> Downloading ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.zip
######################################################################## 100,0%
Beautiful!!!
Now, you can go forward with installation process...
Note, you could also publish a new formula for everyone in internet using submitting system, but brew recommed you `brew audit pcre` before submitting, thanks.
Let's take look in installation process once.
Oh my... it isn't enough.
You try the following tricks:
1) Install anything from git. Use brew install 'git-url' and edit <your-package>.rb (yeah... formulas are ruby files) changing url (method) to head.
2) Oh wait. Try the simplest command. brew update and try install again. ;)
http://code.google.com/p/gource/
Very effective to show your work for your partners and bosses.
But... I had bad time to install gource using Mac OS X.
(brew is too a fantastic tool. It allow you install thousands packages almost as easy as debian apt-get). But, for brew...
nano-belt:~$ sudo brew install gource
Also installing dependencies: pcre, glew
==> Downloading ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.tar.bz2
curl: (78) RETR response: 550
Error: Failure while executing: /usr/bin/curl -f#LA Homebrew\ 0.8\ (Ruby\ 1.8.7-249;\ Mac\ OS\ X\ 10.6.8) ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.tar.bz2 -o /Library/Caches/Homebrew/pcre-8.12.tar.bz2
Arrrg... brew can't locate an pcre from remote server. For our luck, brew has a fantastic way to avoid this problem. Simply, create your own formula to brew install pcre:
sudo brew create ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.zip
Version detected as 8.30.
==> Downloading ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.zip
######################################################################## 100,0%
Beautiful!!!
Now, you can go forward with installation process...
Note, you could also publish a new formula for everyone in internet using submitting system, but brew recommed you `brew audit pcre` before submitting, thanks.
Let's take look in installation process once.
Oh my... it isn't enough.
You try the following tricks:
1) Install anything from git. Use brew install 'git-url' and edit <your-package>.rb (yeah... formulas are ruby files) changing url (method) to head.
2) Oh wait. Try the simplest command. brew update and try install again. ;)
Comentários