mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
10 lines
248 B
Ruby
10 lines
248 B
Ruby
require 'rubygems'
|
|
require 'sinatra'
|
|
require 'json'
|
|
set :port, 3123
|
|
set :environment, :production
|
|
Dir.chdir(File.dirname(__FILE__) + "/..")
|
|
|
|
post "/" do
|
|
system %{rake handle_update --trace REF=#{JSON.parse(params["payload"])["ref"].inspect}}
|
|
end
|