Skip to content
YorickPeterse edited this page Jan 23, 2012 · 20 revisions

Ramaze is a simple, light and modular open-source web application framework written in Ruby.

Installation

$ gem install ramaze

Hello World

require 'ramaze'

class MainController < Ramaze::Controller
  def index
    "Hello, World!"
  end
end

Ramaze.start

Resources

Clone this wiki locally