Skip to content

Instantly share code, notes, and snippets.

@pillowfactory
Created June 14, 2010 22:01
Show Gist options
  • Save pillowfactory/438387 to your computer and use it in GitHub Desktop.
Save pillowfactory/438387 to your computer and use it in GitHub Desktop.
require 'user_app'
map '/user' do
run UserApp
end
require 'rubygems'
require 'sinatra/base'
class UserApp < Sinatra::Base
post '/?.:format' do
# create a User
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment