markbates / micro-mack

A 'micro' version of the Mack Framework

This URL has Read+Write access

name age message
file .gitignore Loading commit data...
file README
file Rakefile
directory lib/
directory test/
README
Micro Mack
========================================================================
micro-mack was developed by: markbates

=== Sample Application

  require "rubygems"
  require "micro-mack"
  
  app.get("/") do
    text "hello world!"
  end
  
  app.get("/foo") do
    inline "<%= 1 + 1 %>"
  end
  
  app.get("/posts/new") do
   text %{
  <form action="/posts/create" method="post">
    <input type="text" name="id" value=""/>
    <input type="submit" value="Submit" />
  </form>
    }
  end
  
  app.post("/posts/create") do
    text "id: #{params[:id]}"
  end
  
  MicroMack.start!