danielharan (owner)

Fork Of

gist: 67206 by anonymous

Revisions

gist: 67209 Download_button fork
public
Public Clone URL: git://gist.github.com/67209.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env ruby
 
require 'rubygems'
require 'thin'
require 'sinatra'
 
post(/.*/) do
  `rake deploy:stage`
end
 
Thin::Server.new("localhost:3000") { run Sinatra::Application }