aboutsummaryrefslogtreecommitdiff
path: root/example/example.rb
blob: 5aed8cbb5723bb26e9574f4662940f0a438ea6dc (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env ruby

require 'sinatra'

set :bind, '0.0.0.0'
set :port, 80

get '/' do
  'Put this in your pipe & smoke it!'
end