If you don't have Ruby on your system already you'll need it.
sudo apt-get install ruby-full build-essentialNext you'll need to get gems.
sudo apt-get install rubygemsOk, then we have all dependencies required to get going. Now lets get Nu. Nu is installed through gems like this (NB! make sure you install nu with root priveleges or it won't work).
sudo gem install nuGood, now we have all we need to start using Nu. Just one thing, when running Nu I got an error saying "no such file to load -- FileUtils". The reason for this is that Linux has a case sensitive file system and the file is called fileutils.rb not FileUtils.rb. If you also end up having this issue go to the folder containing fileutils.rb (something like /usr/lib/ruby/1.8) and create a symlink by running the following command.
sudo ln fileutils.rb FileUtils.rbNow to some real Nu action. Let's say we have a project and we want to start using NHibernate. What you have to do is to go to the root folder of your project and type this command.
nu install nhibernateYou'll get a couple of warnings but it's going to do what it's supposed to. When it's done you can go into the newly created lib directory and see NHibernate and it's dependencies in there. Neat huh!?
Hi, actually the URL for the Nu project should be http://groups.google.com/group/nu-net
SvarSlettSo are you using Mono on Linux then?
Kiliman
Thanks, URL updated. And yep am using Mono.
SvarSlett