Ruby

Ruby

Introduction

The following page is dedicated to information about the Ruby programming language and all things related to it. This page was assembled with help from Brant.

Getting Started

  1. Intro to Ruby - A series of posts that teaches you what Ruby is, how to configure it for your development environment, and how to use the language (code samples are included and available for download as well).
  2. Ruby on Rails Tutorials - A rather extensive list of tutorials to help get you started with the Ruby on Rails web framework.

Tips and Tricks

Documentation

API

  • Ruby Docs - Additional Ruby documentation and resources.
  • Ruby Core API
  • Ruby Standard API
  • API Doc - Provides quick keyword search capabilities as well as community comments for Ruby and Ruby on Rails.
  • Got API - An alternative to API Doc but not as easy on the eyes. Depends on your temperament, of course.
  • Ruby on Rails API
  • RailsBrain - Provides a faster way of navigating the Ruby on Rails API.
  • Noobit - A central source for Ruby, Ruby on Rails, and Ruby Gems documentation.

For those into Rails, more information can be found on The Ruby on Rails Link Library site.

Tutorials

  • Railscasts - Short screen cast tutorials of Ruby on Rails code.
  • PeepCode - Screen cast tutorials like Railscasts but longer in length and not free (roughly $9 per episode).
  • Envy Casts - Produced by the same guys that host the Rails Envy podcasts. Each screen cast tutorial will set you back about $9.

News

Mailing Lists

Communities

  • Act as Community - Nice site design but slow to use. Not sure if it is a Rails problem or a hosting problem. I am member as well.

Books

Tools

Gems

Ruby Gems allow one to discover and install additional packages that do not come standard with the base Ruby distribution. NOTE: If you are having trouble installing RubyGems 1.3.0 on MacOS 10.5.4, this might help. Here are a few worth considering:

  • Aeonscope Enhanced Select - An enhanced select helper for forms that allows you to use the full HTML spec for select option elements.
  • Echoe - A simple and easy to use gem builder tool for creating your own Ruby Gems.
  • Jeweler - Makes managing and building your Ruby Gems easier. Learn how to craft the perfect gem with Jeweler.
  • RSpec- A Behavior Driven Design (BDD) testing framework for Ruby and other languages. Can also be used as a plugin to Rails. For MacOS users, check out RSpactor as a app for automatically monitoring and running your RSpec tests.
  • Cucumber - An add-on to RSpec that supports story testing. Learn how to get started: Part 1 and Part 2.
  • Mocha - A mocking and stubbing library. Works with many of the other testing frameworks out there. Can be installed as a Rails plugin as well.
  • Machinist - Easily generate test data rather than deal with fixtures.
  • Webrat - Allows you to write robust and easy web acceptance testing.
  • ZenTest - An auto-tester that works with RSpec.
  • Autotest Fsevent - A Mac-friendly auto-tester.
  • Roodi - A code cleanup tool that warns and/or questions your code.
  • Flog - Uses ABC metrics to analyze the complexity of your code.
  • rcov - A code coverage tool that can also generate HTML charts.
  • reek - “A tool that examines Ruby classes, modules and methods and reports any code smells it finds.”
  • Towelie - Identifies code duplication to help keep code DRY.
  • Flay - Similar to Towelie and possible better in coverage but not as easy to read the output it generates.
  • Vlad the Deployer - Programmatic application deployment.
  • Moonshine - “Rails deployment and configuration management done right. ShadowPuppet + Capistrano == crazy delicious.”
  • Facets - What you can’t find in the base Ruby library you might find with this gem.
  • Ruby on Rails - A database supported framework for web application development using the Ruby language.
  • Merb - A MVC like Rails but faster, more abstract, and lightweight.
  • Rack - A modular web server interface for Ruby programs (in case you wanted an alternative to Ruby on Rails). Get introduced, watch a few screencasts, and check out 32 links that will help you get started.
  • SQLite3 - Adds Ruby support for the SQLite3 database. To install type: sudo gem install sqlite3-ruby.
  • MySQL - Adds Ruby support for the MySQL database. To install (MacOS) type: sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config.
  • Oracle Enhanced Adapter - Enhanced adapter for Oracle databases with additional configuration options.
  • Feed-Normalizer - Normalizes any RSS feed so that you can access from a generic class.
  • Ferret - Inspired by the Apache Lucene project, Ferret is a text search engine for Ruby.
  • Picolena - A Ferret-power document search engine that claims to be lightweight and speedy.
  • Active Merchant - Originally developed for Shopify, it adds financial processing to Ruby and/or Rails applications.
  • Active Shipping - A shipping API extension to Active Merchant.
  • Active Record Extensions - Adds functionality and performance enhancements to Active Record.
  • Sortable - Enables sorting of ActiveRecords in multiple lists and scopes.
  • Couch Foo - Provides an ActiveRecord API interface to CouchDB.
  • Ruby OSA - Enables Ruby programs to manipulate MacOS applications in much the same fashion as AppleScript.
  • GPS Receiver Reader - Use this to interpret GPS data.
  • libxml - An XML parsing library that claims to be fast and feature rich. Read about resurrecting libxml-ruby to learn more.
  • Hpricot - An HTML parser for Ruby.
  • Nokogirl - Another HTML/XML parser. Claims to be fast.
  • Hoshi - Makes creating HTML/XHTML/XML views easier.
  • MMS2R - “A library that decodes the parts of an MMS message to disk while stripping out advertising injected by the mobile/cellphone carriers.”
  • Pool Party - “An open source tool that automates deployment, monitoring, and load balancing of [Amazon] EC2 instances.”
  • SOAP4R - The SOAP implementation for Ruby. You can get started here.
  • BackgroundDRb - A Ruby job server and scheduler for running background tasks asynchronously. Warning: This is heavyweight, error prone, and not that easy to use.
  • Daemon Controller - A library for managing daemon threads.
  • DataFlow - A gem for managing thread concurrency.
  • HTTParty - A convenience library for modeling response objects such as JSON, XML, etc. Read more about it if you like.
  • JSON - A JSON data wrapper that can be parsed as a Ruby object.
  • PDF Writer - A library with some excellent documentation for generating PDF documents. Check out Railscast, Episode 78 to learn more.
  • Prawn - A library for generating PDF documents. Check out the prawnto plugin and Railscast 153 for more info.
  • Config Toolkit - Makes parsing configuration files easy in Ruby.
  • Configatron - Similar in nature to the System Settings plugin for Rails, this makes configuring/customizing your app easier. Developed by the same guy responsible for the Mack framework. Check out this tutorial for getting started.
  • Adhearsion - A VoIP library.
  • NeverBlock - Built upon Ruby 1.9, NeverBlock allows one to write transparent, non-blocking, concurrent code.
  • Doodle - A library that simplifies the definition of Ruby classes by making attributes and their properties more declarative.
  • Markaby (a.k.a. Markup as Ruby) - Allows you to write Ruby code to easily generate HTML without having to mess with the HTML syntax. Can also be installed as a plugin to Rails.
  • RedCloth - A module that adds Textile capabilities to Ruby for writing semi-static pages that need HTML syntax but where you don’t want to actually write in HTML.
  • BlueCloth - Similar in capability to RedCloth but uses Markdown syntax.
  • Rote - “Rote is a simple page-based template system that was written to make it easier to author and maintain non-dynamic websites and offline documentation. Rote provides a simple command line or Rake based build for your pages, with page rendering (optionally supporting RDoc formatting, Textile and Markdown with RedCloth and ruby code with ERB), layout, and general documentation / website build tasks.”
  • Webby - A simple and tiny content management system for your web app (well, sort of). Follow the link to learn more.
  • WeatherMan - Encapsulates the XML API from weather.com so that you can easily manipulate the data.
  • RMagic - A Ruby interface to the ImageMagick and GraphicsMagick image processing libraries. In order to install RMagic one of those image process libraries must be installed and configured first. Try installing ImageMagick from source first. Then type the following to install the gem: sudo gem install rmagick.
  • FFMPEG-Ruby - A Ruby wrapper to the C-library for dealing with video files.
  • Vimeo - A full-featured ruby interface for the Vimeo API.
  • Chronic - A natural language time parser. The only problem is that it doesn’t support time zones at the moment but is planned as a future enhancement.
  • Briad - A simple tool for tracking SVN and GIT repository branches.
  • Suprails - Meant to replace and be the super version of the rails command you already know.
  • Garlic - Lightweight continuous integration for rails using git.
  • Pony - A lightweight and quick way to send e-mail with just one command.
  • Alter Ego - An implementation of the Gang-of-Four’s state pattern.
  • Blackbook - A contact importer/exporter for various social services like Hotmail, Gmail, etc. Supports exporting capabilities for hashes, vCards, and XML.
  • Asset Copier - An asset copier for your Rails plugins.
  • GeoKit - Provides the ability to calculate distance, compute lat/long on a model, compute lat/long from a snail address, and much more.
  • Strongbox - Uses public key encryption to secure ActiveRecord attributes.
  • attr_encrypted - Encrypt and decrypt attributes transparently.
  • hattr_accessor - Allows one to define accessors that reference members of a hash.
  • Twitter - Manipulate your Twitter data. Has identi.ca support as well. To learn more, go here.
  • twitter2rss - “Read your twitter feed, including direct messages and malformed @replies, via RSS.”
  • TwitterAuth - A full authentication stack for integrating Twitter with your Rails app using both OAuth and HTTP Basic authentication. Read more here.
  • Daemon Kit - A gem for creating daemon skeletons along with rake tasks for management of your daemons.
  • Resume2 - Provides a command line tool for managing your resume from a central YAML file.
  • Jekyll - A blog-aware, static site generator.
  • authlogic - One of the better authentication systems with lots of flexibility. Check out the tutorials to get started.
  • Clearance - Developed by thoughbot, it adds authentication and authentication testing to your Rails app.
  • Rufus Scheduler - A cron-like date/time scheduler. Can also be tailed for use in a Rails app. Learn more here.
  • Titleizer - Smarter capitalization for titles.
  • Encryptor - “A simple wrapper for the standard ruby OpenSSL library.”
  • Sprockets - “Sprockets is a Ruby library that preprocesses and concatenates JavaScript source files. It takes any number of source files and preprocesses them line-by-line in order to build a single concatenation.”
  • Sprinkle - A software provisioning tool for building a Ruby stack on a slice in a quick and easy fashion. For example, check out the Passenger-Stack script.
  • Feedzirra - “A feed fetching and parsing library that treats the internet like Godzilla treats Japan: it dominates and eats all.”
  • is_taggable - A simple tagging solution.
  • timeline_fu - Easily build timelines.
  • Scruffy - A library for generating graphs and visualization of data using SVG.
  • DataFabric - Enabled ActiveRecord database connections to be sharded.
  • Infuse - “Create HTML slide shows with a simple DSL.”
  • Formtastic - A Rails form builder plugin with semantically rich and accessible markup.
  • Scrooge - An ActiveRecord query optimizer.
  • Git Remote Branch - Easily manage remote branches with Git.
  • Ghost - Allows you to create, list, and modify host names with ease.
  • Lockdown - An authorization system for Ruby on Rails.
  • Radarb - A ruby gem that makes using the http://outside.in API simple.
  • CloudKit - “CloudKit provides schema-free, auto-versioned, RESTful JSON storage with optional OpenID and OAuth support, including OAuth Discovery.”
  • Sanitize - A whitelist-based Ruby HTML sanitizer.
  • Integrity - A continuous integration server. Learn more.
  • Open Social - Allows you to work with Google OpenSocial data on your server.
  • ChocTop - Packages and deploys any Cocoa application in a custom DMG, with generated Sparkle XML support.
  • Taps - A database import/export app.
  • Comma - “A small CSV (ie. comma separated values) generation extension for Ruby objects, that lets you seamlessly define a CSV output format via a small DSL”.
  • Whenever - Build UNIX cron jobs easier in Ruby without having to deal with confusing cron syntax.
  • Simple Form - “Simple easy contact form for Rails with I18n, validations, attachments and request information.”
  • Safe - A simple backup solution for mysql and Postgres files.
  • Octopi - A Ruby interface to the GitHub API.
  • Railroad - A class diagram generator for Ruby on Rails apps. It allows you to easily generate diagrams showing your model relationships and attributes (done by analyzing your model associations and migrations).
  • REST Client - A simple REST client.
  • Aeonscope REST - Add one line of code to your controller and, presto, you get all seven REST actions for free. It is also very customizable and unobtrusive.
  • Described Routes - “Dynamic, framework-neutral metadata describing path/URI structures, with natural translations to/from JSON, YAML and XML.”
  • AndAnd - Allows you to guard against nil values in chained methods.
  • GreenGreen - “A tool for assuring quality metrics of 100% quality.”
  • Nanite - A “self assembling fabric of ruby daemons.”
  • AMPQ - “AMQP client implementation in Ruby/EventMachine.”
  • Easy Navigation - Adds site navigation support to your app.
  • Yard - A documentation generation tool that can export to multiple formats.
  • Trample - A load simulator for testing how your app holds up against heavy traffic.
  • Sunspot - “All the power of the Solr search engine; all the beauty of Ruby. Sunspot exposes all of Solr’s most powerful search features using an API of elegant DSLs.”
  • Barometer - “A multi API consuming weather forecasting superstar.”
  • Curb Fu - “Simple, yet powerful wrapper for taf2’s curb (libcurl) library.”
  • Externals - “Quickly freeze and unfreeze external git dependencies.”
  • RiCal - An RFC 2445 (iCalendar) for Ruby.
  • SMS on Rails - “Provides an interface and ORM framework for sending and storing SMS messages through Email Gateway or with Clickatell HTTPS.”
  • Active URL - Aids in generating secret URLs which is useful for new user registration.
  • Garb - Provides an API to the Google Analytics service.

Ruby on Rails Plugins

  • ActiveScaffold - Built on top of Rails, it is a scaffolding plugin for quickly generating UI on your models.
  • Streamlined - A scaffolding plug-in for quickly building views.
  • Hobo - A collection of scaffolding plug-ins designed to make generating UI around your models much easier.
  • Flex Scaffold - Allows you to build Flex scaffolding to your RESTful controllers.
  • Annotate Models - “Add a comment summarizing the current schema to the top of each ActiveRecord model source file.”
  • Pacecar - Adds class methods to your models that can reduce writing named scopes as well as work in conjunction with named scopes.
  • ar-extensions - Extends and enhances the default functionality of ActiveRecord such as mass data import and exporting to CVS via the “to_csv” method.
  • Live Validations - “Reads Active Record’s validations and makes them available to live client side javascript validation scripts.”
  • Custom Error Messages - Have complete customization over your ActiveRecord error messages.
  • Acts as Commentable - Easily makes your models commentable.
  • Acts as Snook - “A comment spam solution that doesn’t rely on CAPTCHAs, Javascript, or external web services.”
  • Acts as Voteable - Easily makes your models voteable.
  • Acts As Versioned - Adds versioning support to an ActiveRecord model. More details here.
  • Acts as Revisable - Like Acts as Versioned but with precise control over version details.
  • Acts As Paranoid - Stores time of ActiveRecored deletion in a “delete_at” attribute.
  • Acts as Taggable On - Adds tagging capabilities to ActiveRecords.
  • Acts as List - “Provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a +position+ column defined as an integer on the mapped database table.”
  • Acts as Unvolgable - Enables the ability to embed external video sources in your web application.
  • Quick Scopes - A set of named_scopes that you might use on a regular basis: limit, order, where, with, etc. Follow the link to learn more.
  • Stripper - Removes leading and trailing blanks from attribute values in your models.
  • Nilify Blanks - Ensures records data stays nil when nothing is submitted. This is especially useful for those form fields where data is not required but still ends up as an empty string in your database. Now you don’t have to worry by using this gem instead.
  • Cache-Money - A read/write-through caching library for ActiveRecord.
  • Message Block - An alternative to flash messages and model errors messages.
  • Shoulda - Enhances Test::Unit framework for Rails applications.
  • Mephisto - A CMS for Rails but more focused for blogging.
  • Typo - Another CMS for Rails with a focus on blogging.
  • Radiant - A stripped down, bare bones CMS for Rails. Supports a powerful tagging system and includes extension support.
  • Adva CMS - A Ruby on Rails engine for adding CMS capabilities to your site.
  • Community Engine - Enables many of the features you would need in building a social community web site such as tag clouds, RSS feeds, user profiles, etc. Learn more here.
  • Tog - A collection of tools to make adding social capabilities to your Rails app.
  • Haml - Adds a new and possibly more elegant way of building views for your Rails apps.
  • MemCached - “A high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.” To learn more, check out these tutorials: Basics for Rails and MemCached in Ruby on Rails.
  • Paperclip - Offers an easier way of handling file uploads. Read this article for more info. You can also have default Gravatars and can also manage multiple attachments with validations. Finally, learn how to speed up your tests by 70%.
  • Attachment Fu Manages file uploads. Can also be used to upload via URL as well.
  • Make Resourceful - Easily add RESTful actions to your controllers for basic operations. A good way to get off the ground and running for common functionality.
  • Resource Controller - A controller/scaffolding that provides the basic 7 REST methods for you, keeping your code DRY.
  • Restful Transactions - “Ensure that any Ruby on Rails controller action executed within a POST, PUT or DELETE request is wrapped in a transaction.”
  • Restful Authentication - Adds user authentication to your web app. To learn more, read restful authentication and stateful authentication.
  • Lockdown - An authentication/authorization system that is a different take on security than Restful Authentication.
  • Seed Fu - Go beyond basic fixtures and use this to seed your Rails database.
  • TextMate Syntax Highlighting - Allows you to display code using highlighting as found in TextMate.
  • Metric Fu - Measures performance metrics and includes code sniffing tools such as Flay, Reek, and Roodi. Integrates well with Continuous Integration.
  • Rails iUI - Aids in developing your web application for the iPhone.
  • Palmist - Helps find and fix MySQL bottlenecks.
  • Javascript Auto-Include - Automatically includes and loads JavaScript on a per controller basis.
  • Rubber - “Enables relatively complex multi-instance deployments of RubyOnRails applications to Amazon’s Elastic Compute Cloud (EC2).”
  • Calendar Helper - Render a calendar view of previous, current, and future months with your views. Comes with CSS stylesheet support to help get you started. Check out later_dude for i18n support.
  • WeeklyBuilder - Provides a monthly/weekly calendar view to your for your web app.
  • Calendar Date Select - A JavaScript-based date/time picker that has an impressive set of features. Make sure to check out the demos.
  • Bundle Fu - Streamlines the loading of JavaScript files. Helps speed up loading and reduces additional lines of code.
  • Act As State Machine - Add callback code to your models when they change state. Read more.
  • State Machine - “Adds support for creating state machines for attributes on any Ruby class.”
  • Sentry - A wrapper for OpenSSL encryption classes.
  • Dynamically Tags - Tags words in a sentence, dynamically.
  • Awesome Fields - Allows one to build forms in a much more streamlined fashion using DRY principals.
  • Subdomain Fu - A tool set for adding and dealing with subdomains.
  • Mobile Fu - Adds mobile device support.
  • Open Flash Chart - A rather attractive way of charting data. Learn how to port this to your Rails project.
  • Google Charts on Rails - A simple plugin with very basic support of the Google Chart API. It’ll get you started quickly but you’ll soon hit limitations.
  • Google Gears - Install this plug-in to make use of Google Gears with Rails.
  • ActivePresenter - A clever way in which to wrap and manipulate multiple models into a single form.
  • has_markup - A plugin to ease the display of HTML markup.
  • openStream - Adds e-commerce to your site.
  • Spree - Add e-commerce to your site but still requires a bit of work to get working. Worth checking out.
  • Localized Dates - “The localized_dates plugin takes away some of the pain of localizing dates and times. It leverages the power of the Rails i18n plugin to facilitate localization of dates and times.”
  • will_paginate - Adds pagination to your views.
  • Endless Page - Uses AJAX requests to create an endless page as you scroll down. A nice alternative to using pagination.
  • Query Reviewer - A sort of profiling/debugging tool for your MySQL queries. It generates reports that can be reviewed. It also supports AJAX.
  • System Settings - Adds storing and retrieval of configuration settings for your web application in a convenient manner.
  • New Relic - A Rails plugin that monitors application performance a diagrams where areas could be improved. It is free to use for development but then there is a cost involved to use in production.
  • Augmentations - Adds the ability to define common code for your models in once place and then easily apply this common functionality to the models that need it.
  • Country Select Plugin - Once part of Rails core, it is now a separate plugin due to its offending nature to certain countries.
  • Workling - Provides a simple API for running code in the background (outside of your request).
  • Delayed Job - A scheduler for background tasks/jobs. Is not a daemon thread.
  • Job Fu - “Simple Asynchronous Processing solution that uses the database as queue.”
  • BackgroundJob - Another solution for background tasks.
  • Background Fu - Another background scheduler that claims to be easy to use.
  • Query Reviewer - Analayze and study the number of queries you make to the database. How efficient are you? Find out with this plug-in.
  • Better Partials - Tired of all those render statements in your views? Maybe you have too many helper methods? Give this plug-in a try for making working this space easier.
  • Exception Logger - Logs exceptions in your database and provides a admin view for reviewing the results.
  • Smurf - Automatically minimizes cached JavaScript and CSS code to help improve performance.
  • AssetPackager - Dynamically reduces your stylesheets to one file and your Javascripts to one file.
  • Textile Toolbar - Adds a textile toolbar to your web app for people to easily write HTML markup without all the overhead and still generate clean HTML code on the backend.
  • Graticule - Provides a “geocoding API for looking up address coordinates. It supports many popular APIs, including Yahoo, Google, Geocoder.ca, Geocoder.us, PostcodeAnywhere and MetaCarta.”
  • Polymaps - Takes your geocoded data and draws polygons on Google Maps with it.
  • QueryTrace - Helps pinpoint where your SQL queries are slowing down and killing your application.
  • XSS Terminate - “Makes stripping and sanitizing HTML stupid-simple. Install and forget. And forget about forgetting to h() your output, because you won‘t need to anymore.”
  • Stuffing - “A Rails plugin to read and write CouchDB documents via Activerecord.”
  • enum_field - Easily add enum_fields to ActiveRecord.
  • Redirect Routing - Easily redirect your routes.
  • Report as Sparkline - Adds easy generation of sparklines based on model data.
  • Validates Timeliness - “Date and time validation plugin for Rails 2.x and allows custom date/time format.”
  • Scrap - “A Rails metal handler for analyzing your processes’ memory usage.”
  • HARSH - a.k.a. Another Rails Syntax Highlighter. “It highlights code in Rails, much like Radiograph or tm_syntax_highlighting. However, it does it well, better . Oh, and it also supports Haml, as well as ERb. And it comes with rake tasks.”
  • D2S3 - “Rails plugin which provides a form helper to upload files directly to Amazon’s S3 using an HTTP POST.”
  • Blue Ridge - Adds BDD JavaScript (using Screw.Unit and env.js).
  • Auto Session Timeout - A plug-in for automatically timing out a session within your web application.
  • Spreadsheets on Rails- “Generate xls documents by using rxls templates.”

Here are a few more worth checking out: Top 11 Rails Plugins by Juxie TechKnow.

Templates

  • Rails Setup - Quickly generate a new Ruby on Rails application with more than the default settings. There is a lot of goodies included in this template so follow the link and check out feature set to learn more.
  • Twitter - Construct a Twitter application within seconds.

Themes

  • Web App Theme - A good foundation from which to launch theme support within your application.

Best Practices

Metaprogramming

Security

Performance/Benchmarks

Web Frameworks

  • Thin - A Ruby web server that combines the power of Mongrel, Event Machine, and Rack.
  • Ebb - A small and fast web server for dynamical languages with minimal features.
  • Lighttpd - A web server that aims to be fast, high performance, and excellent and managing CPU load.
  • Mack - “Is a Ruby web application framework that is being built from the ground up to aid in the development of distributed, portal-like applications that have a need for speed. Mack supports best of breed technologies in a modular way.”

Web Hosts

The following is a list of web hosting providers of Ruby on Rails applications. The list is asssembled in no particular order:

Here are other options.

Job Leads

Additional Resources

  • giiternal - A handy took for managning source code dependencies.
  • Cruise Control - A continuous integration build system on Ruby on Rails for Ruby on Rails. Very simple to download and get up and running.
  • Cinabox - A Continuous Integration build system for Ruby. Designed to run on a Ubuntu distro.
  • Camping
  • RIO - A useful Ruby I/O library. Check out the How To documentation as well.
  • RubyWorks - A pre-assembled web server production stack for Ruby.
  • Rails Kits - A collection of plugins and resources assembled in easy to use kits that can help jumpstart your web development. Each kit comes with a single site or development license. Prices range from $200 and up.
  • MacRuby - A version of Ruby that is built on top of Objective-C for the MacOS. Provides more stability and better performance than the default Ruby distribution.
  • Feather - A Merb-based blogging platform.
  • Rubinius - A Ruby virtual machine written in C that is loosely based on the Smalltalk-80 architecture.
  • Passenger - a.k.a. mod_rails. Makes deploying Rails application on an Apache server easier.
  • Merbunity - A web site and community of news and resources built around Merb.
  • Can Has Auth? - A Merb plugin that supports user authentication much like Restful Authentication for Ruby on Rails.
  • DBSlayer - “A lightweight database abstraction layer suitable for high-load websites where you need the scalable advantages of connection pooling. Written in C for speed, DBSlayer talks to clients via JSON over HTTP”.
  • Thor’s Hammer - An alternative to the rake and sake scripting frameworks.
  • Splunk - Helps manage the various log files associated with a web application. Check out the web site demos as well as usage on Amazon EC2.
  • Sexy Forms for Merb - Much like Awesome Fields for Rails, this adds handy form helpers to your application.
  • SWFUpload - A lightweight JavaScript/Flash plugin for uploading a file or multiple files to a web server. Seventytwo has an article on how to make this plugin work with Rails.
  • Hoptoad - A free service that will capture and aggregate exceptions in your web application to reduce e-mail maintenance spam. Can also be used as a syndicated feed amongst other capabilities.
  • BaseApp - A default Ruby on Rails application that comes with navigation tabs, user authentication and roles, and user administration UI to help jump start your next application development work.
  • Bort - Another Ruby on Rails application like BaseApp to get you off the ground and running quickly.
  • Beanstalkd A fast work queue service. Check out the Devver basic and intermediate posts for getting started.
  • Puppet - A resource for automating system administration tasks.
  • Enki - A base application framework for blogging. Supposedly better than Mephisto or SimpleLog.
  • iPhone on Rails - A framework that aids in interacting with Ruby on Rails applicaitons.
  • Shoes/Raisins - A graphical toolkit for building colorful apps.
  • Sifter - An easy bug tracking system.
  • Ruby Graphviz - Library support for Graphviz. Learn more about automating data visualization with Ruby and Graphviz.
  • Pound - “A reverse proxy, load balancer and HTTPS front-end for Web server(s). Pound was developed to enable distributing the load among several Web-servers and to allow for a convenient SSL wrapper for those Web servers that do not offer it natively.”
  • Spike - A Ruby on Rails log viewer and analysis tool for the MacOS.
  • Masochism - “ActiveRecord connection proxy for master/slave connections”.
  • Drails - A Rails + Dojo implementation. It replaces the Prototype/Scriptaculous helpers with Dojo helpers.
  • Redmine - A project management application built on top of Ruby on Rails.
  • Babylon - “A XMPP Component Framework based on EventMachine. It uses the Nokogiri GEM, which is a Ruby wrapper for Libxml2. It implements the MVC paradigm.”
  • EcomPages - A Ruby on Rails shopping cart application.
  • BrowserCMS - A “Humane Content Management for Rails”. Learn more.
  • Date Performance - Improves date and time performance by using C libraries instead of the native Ruby ones.
  • Kete - Open source, collaboration software.
  • Pushmaster - “A helper script that makes it trivial to listen to Github Post-Receive hooks.”
  • Ocra - A one-click installer generator for Windows.
  • Scout - A Ruby on Rails monitoring service.
  • Remarkable - Additional support to make building RSpec tests easier.