InfoQ

InfoQ

News

My Bookmarks

Login or Register to enable bookmarks for unlimited time.

The content has been bookmarked!

There was an error bookmarking this content! Please retry.

The Forgotten Ruby Web Frameworks

Posted by Sebastien Auvray on Nov 06, 2007

Sections
Development
Topics
Ruby ,
Web Frameworks
Tags
Rails
With the success of Ruby on Rails, is there a place left for other Web frameworks written in Ruby? Everyone knows Rails, some might even have heard of Merb and Camping, but has anyone heard of Nitro, Ramaze, Sinatra, IOWA or Cerise? InfoQ quickly tours these frameworks and how they are appreciated (or ignored) by the blogosphere.

We previously talked about Merb which is maybe the most accomplished Rails alternative. It is a fairly active project and is used in several production environments. It is the Ruby Web framework which has the most similarities with Rails.

Camping defines itself as a web framework which consistently stays at less than 4kb of code. The project is 22 months old, and maintained by whytheluckystiff. A whole web application can be defined in a single file while still following the MVC pattern (making it easier to migrate to Rails later). Camping uses ActiveRecord as the ORM; the templating system used is Markaby. Whytheluckystiff keeps enhancing Camping on a regular basis.

Nitro is a 3 years old "Web 2.0" framework.  After a period of inactivity, George K. Moschovitis seems to be active again. Nitro apps are written in Ruby for server side and Javascript for client side. Urubatan made a recent review of it. Contrary to Rails which favors coding by convention, Nitro is more flexible. Nitro also makes it possible to write Model-View-Controller based apps and non-MVC php-style apps as well.  Nitro uses xhtml files with custom Ruby tags as template system.  Nitro also uses its own persistence layer called Og (ObjectGraph). Og allows the serialization of arbitrary Ruby objects. Once marked as Object (or Array or Hash) in the attr_accessor, the engine will serialize a YAML dump of the object. Arbitrary object graphs are supported too. Og provides automagic database evolution: when a Ruby class is changed, Og will automatically detect it and change and alter the database accordingly. Some of you might miss all the features of ActiveRecord Migration.

Ramaze is a 6 month old light Ruby Web Framework. It was built using well-known Ruby principles:
  • KISS (Keep It Super Simple)
  • POLS (Principle Of Least Surprise)
  • Modular design
  • Minimal dependencies
  • Documentation
  • Open development
  • BDD Development / Examples
Ramaze is an MVC web framework which uses its own templating system called Ezamar. But you can also plug Markaby, HAML, Liquid or ERB over it. Ramaze doesn't come with a default ORM (Object-Relational Mapper), you can use the one of your choice: ActiveRecord, Og... It supports advanced usages such as Cache, and webapps can be served through Mongrel or Evented Mongrel. You'll find more details about it on the Ramaze wiki.

Sinatra is a one month old DSL web development framework. Ron Evans made a short review of it. The major difference with Rails is that it is not a Model-View-Controller based framework. Sinatra is made of a minimal DSL-syntax, its small base core does not contain such module as ActiveRecord. Sinatra has dynamic route definition through the use of get/post action definitions. As Ron states, Sinatra is not made for robust web applications, but rather small prototype where mixing business logic and presentation layer is not a problem.
So what would it be good for? API implmentations, quick minimal applications, and web development that does not want or need things that are included in Rails, like ActiveRecord. Control panel mini-applications, or perhaps widgets.
Of the other frameworks, IOWA has not been active for 3 years and Cerise has not been active for 1 year so we won't go into those.

Apart from Nitro which, like Rails, has its own complete core, the other web frameworks try to be as small as possible, making the user free to plug in their favorite ORM, Templating System, etc. Even if some of those frameworks might suffer from a lack of documentation or even it they do not have as many features, popularity, or users Rails, they might still be worth having a look at.
Sinatra & ERB/Haml by Blake Mizerany Posted
Re: Sinatra & ERB/Haml by John Green Posted
IOWA by Horacio Lopez Posted
Re: IOWA by Sebastien Auvray Posted
Re: IOWA by Kirk Haines Posted
Re: IOWA by Horacio Lopez Posted
  1. Back to top

    Sinatra & ERB/Haml

    by Blake Mizerany

    Sinatra currently supports both Erb and Haml for Template and Inline use. Creating your own renderer for you template of choice is as easy as pie. Enjoy. sinatra.rubyforge.org/doc/classes/Sinatra/Erb/E...
    sinatra.rubyforge.org/doc/classes/Sinatra/Haml/...

  2. Back to top

    Re: Sinatra & ERB/Haml

    by John Green

    Sinatra and Haml are a great combo. So little code to make functional apps.

  3. Back to top

    IOWA

    by Horacio Lopez

    IOWA is not defunct at all.

    Avi Bryant abandoned the project many years ago, but shortly after Kirk Haines picked it up and revamped it significantly.
    There's probably few remaining lines of code from the original IOWA by Avi, if any.

    The newest incarnation of IOWA is now under the Swiftcore project umbrella.
    swiftiply.swiftcore.org/index.html

    So from now on, the new IOWA will be rebranded as Swiftcore IOWA, which is alive and kicking, you can use "Avi Bryant's IOWA" to refer to the former project he abandoned around year 2002.

    We're also on irc: irc.freenode.net #swiftcore

  4. Back to top

    Re: IOWA

    by Sebastien Auvray

    Hi Horacio,
    Sorry for that! I have to admit I had problem keeping track of the IOWA project and I never used it myself so it made my investigations even harder.
    Thanks for the clarification, it should definitely be part of my post. I might write about Swiftcore IOWA in a future post.
    Regards,
    Sébastien.

  5. Back to top

    Re: IOWA

    by Kirk Haines

    The placeholder for IOWA's new site was put up a couple of days ago. New content will be going up onto it soon. Feel free to contact me at wyhaines@gmail.com if you have any questions.


    Kirk Haines

  6. Back to top

    Re: IOWA

    by Horacio Lopez

    um... good, you got Kirk's email contact now for when you want to write that future post.
    In the meantime, it would be advisable to correct the factual mistakes on this one.
    Thanks for your attention,

    vruz

Educational Content

Questions for an Enterprise Architect

Erik Dörnenburg answers: What is Enterprise and Evolutionary Architecture?, discussing 4 issues: Turning strategy into execution, Ensuring conformance, Where do the architects sit? Buying or building?

Wrap Your SQL Head Around Riak MapReduce

Sean Cribbs explains what Map-Reduce and Riak are, why and how to use Map-Reduce with Riak, and how to convert SQL queries into their Map-Reduce equivalents.

Polyglot Persistence for Java Developers - Moving Out of the Relational Comfort Zone

Chris Richardson shows how he ported a relational database to three NoSQL data stores: Redis, Cassandra and MongoDB.

The Golden Circle – Why How What

Jean Tabaka challenges the audience to reflect on what Agile practices they are employing, how they are using them, ending with the questions “Why have their organization chosen to go Agile?

The Web Platform as a Limitless Pool of Innovation, with Andreas Gal

Andreas talks about the benefits of the Open Web and how it compares to proprietary stacks. He also talks about various projects that push the envelope like Boot to Gecko, Broadway and pdf.js.

Hadoop and NoSQLin a Big Data Environment

Ron Bodkin discusses early adoption of Hadoop, NoSQL and describes MapReduce and related libraries and Frameworks. Other topics include Hive, Pig, multi tenancy, and security in a big data environment

Spring and Platform Interoperability

Stephen Bohlen explains how Spring helps with interoperability between Java and .NET, demoing it with the help of a sample application.

How to Stop Writing Next Year's Unsustainable Piece of Code

Guilherme Silveira mentions some of the turning points in project development that may affect the quality of the code offering advice on avoiding writing crappy code.