Skip to content

Instantly share code, notes, and snippets.

@b1nary
Created June 18, 2016 18:35
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 b1nary/778b3f083dc9a517bd9055ae34a7534b to your computer and use it in GitHub Desktop.
Save b1nary/778b3f083dc9a517bd9055ae34a7534b to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'sinatra'
require 'json'
post '/hook' do
mention = JSON.parse(request.body.read)
# ...
content_type :json
{ok: true}.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment