metaduck
4Nov/090

Tools for the job

toolsHere are some tools / gems / plugins I can't live without:

IDEs:

  • Aptana Rad Rails - very good at Rails and Ruby. It's based on Eclipse - Java - so it tends to bloat
  • gedit- Tiny footprint, simple. Great for web and PHP with the right plugins and conf tweaks

Ruby / Rails plugins:

12Out/094

Tutorial: building and styling a Rails app with styled_objects

How to keep your stylesheets clean and organized using Rails

This tutorial covers building a web application from scratch using Rails with the styled_objects plugin.

Filed under: CSS, Rails, Web Continue reading
10Out/090

styled_objects Rails plugin

Yesterday I released the styled_objects Rails plugin.

styled_objects is a Rails plugin for simplifying stylesheet management on your application.

Filed under: Rails, Web Continue reading
7Out/090

Rails cache in distributed environment

Page and fragment caching are life-savers for Rails application scalability. Specially for page cache, they can make your app fast, specially if you use a webserver like Nginx, serving static files directly without touching the Rails stack.

But maintaining cache consistency across a distributed Rails application can be challenging.

28Set/090

Capistrano deploying full text search on Rails using acts_as_xapian

acts_as_xapian is a rails plugin for Xapian, a full text search engine.

acts_as_xapian installs the search engine database inside the plugin directory, under xapiandbs. If you use Capistrano as a deployment tool and since the entire codebase is rewritten (including the plugin directory),  you will have to rebuild the entire index every time you do a deployment.