added longDescription example usage to ruby-gems

svn path=/nixpkgs/trunk/; revision=13097
This commit is contained in:
Marc Weber 2008-10-19 12:59:34 +00:00
parent ea22df581b
commit ffcfd819f5

View file

@ -20,5 +20,11 @@ rec {
name = "rubygems-" + version;
meta = {
description = "Ruby gems package collection";
longDescription = ''
Example usage:
gem install -i .ruby-gems json
ruby -I ~/.ruby-gems/gems/json-1.1.3/lib your-script.rb
Probably there are better ways to handle this all. Go on and fix it.
'';
};
}