Add a simple start script for the sinatra app

This commit is contained in:
R. Tyler Croy 2012-08-04 22:28:00 -07:00
parent de5021823b
commit 0358ecc050
1 changed files with 12 additions and 0 deletions

12
bin/saucetv Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env ruby
# vim: ft=ruby
require 'rubygems'
require 'thin'
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '/../lib')
require 'saucetv/app'
SauceTV::Application.run!