3 December 2007 Manfred Stienstra and Sam Aaron

Sam wonders whether Ruby and Rails are really ready for the Enterprise. In this episode Manfred answers this burning question and shows how you can make Ruby feel like Java.

Download episode

class EnterpriseController < ActionController::Base
  before_filter :act_enterprisy

  def index
    @profit = Profit.find :all
  end

  protected

  def act_enterprisy
    sleep 20
  end
end