Rubygems mirror
If you’re a RubyGems user, you can’t have missed how slow it is, even with the new mirroring system.
To speed it up a bit for me, I setup a mirror. You’re free to use it for your own needs if you find it speedier, here’s the URLs :
http://gems.tron.name/gems.rubyforge.org/and
http://gems.tron.name/gems.rubyonrails.com/To use it only for a particular gem use :
gem install --source http://gems.tron.name/gems.rubyforge.org/ your_gem_nameTo set it as the default for your gems add the next line to your ~/.gemrc :
gem: --source http://gems.tron.name/gems.rubyforge.org/ BlogMarks Ruby Library
As said in title, I’m working on a ruby library to interact with BlogMarks.net API and I just release the first beta version (0.1.0).
This project amongst others is available on my projects dedicated website : Jonathan’s Projects, as well as on RubyForge under the name blogmarks. Publishing the project on rubyforge is a great thing because it will be automatically published on their gem server.
I don’t really know how many time it take for a new gem to be integrated in gem server, but as soon as it will be, you’ll be able to install it via :
sudo gem install blogmarks
As you should see on my projects page (and soon on this page), I did a simple Typo Sidebar to show how one can use the library to display his last BlogMarks.[…]