An open API service indexing awesome lists of open source software.

https://github.com/markbates/micro-mack

A 'micro' version of the Mack Framework
https://github.com/markbates/micro-mack

Last synced: 12 months ago
JSON representation

A 'micro' version of the Mack Framework

Awesome Lists containing this project

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 %{




}
end

app.post("/posts/create") do
text "id: #{params[:id]}"
end

MicroMack.start!