Guest User

Untitled

a guest
Apr 20th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. require 'rubygems'
  2. require 'sinatra'
  3.  
  4. set :app_file, __FILE__
  5. set :root, File.dirname(__FILE__)
  6.  
  7. before do
  8. content_type 'text/plain', :charset => 'utf-8'
  9. end
  10.  
  11. post '/?' do
  12. params.inspect
  13. end
Add Comment
Please, Sign In to add comment