Archive

Archive for October 1st, 2008

PunBB + Python = PynBB (Linked)

September 30th, 2008

PunBB + Python = PynBB (Linked)

I say:

Is a great honor to me, you linked my python script (PynBB) to the wiki of PunBB

I will continue learing python and punbb source code to give more options to this script

Thanks.

http://punbb.informer.com/wiki/doku.php?id=links

develop, network, projects, web

rubygems-update issue on Ubuntu

September 30th, 2008

rubygems-update issue on Ubuntu

If you have this problem on your computer:

sudo gem update --system
Updating RubyGems
Bulk updating Gem source index for: http://gems.rubyforge.org/
Updating rubygems-update
ERROR:  While executing gem ... (Gem::GemNotFoundException)
    could not find rubygems-update locally or in a repository

The problem is RubyGems you need to install manually or use this script solution:

#!/bin/bash
#(download the latest on http://rubyforge.org/frs/?group_id=126)
wget http://rubyforge.org/frs/download.php/43984/rubygems-update-1.3.0.gem
sudo gem install rubygems-update-1.3.0.gem
sudo update_rubygems
# now this work:
sudo gem update --system
echo "done."

I found this solution on this web:

http://rubyglasses.blogspot.com/2008/08/updating-gem-to-120-on-ubuntu.html

develop, unix/linux , ,