Skip to content

Instantly share code, notes, and snippets.

@fgarcia
Created August 18, 2014 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fgarcia/bfa855984a4cf573fcbe to your computer and use it in GitHub Desktop.
Save fgarcia/bfa855984a4cf573fcbe to your computer and use it in GitHub Desktop.
❯ curl http://127.0.0.1:3000
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body { text-align:center;font-family:helvetica,arial;font-size:22px;
color:#888;margin:20px}
#c {margin:0 auto;width:500px;text-align:left}
</style>
</head>
<body>
<h2>Sinatra doesn&rsquo;t know this ditty.</h2>
<img src='http://127.0.0.1:3000/__sinatra__/404.png'>
<div id="c">
Try this:
<pre># in app.rb
class Pademo::Base::App
get '/' do
"Hello World"
end
end
</pre>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment