Guest User

Untitled

a guest
Feb 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. require 'sinatra/lib/sinatra.rb'
  2. require 'rubygems'
  3.  
  4. Sinatra::Application.default_options.merge!(
  5. :run => false,
  6. :env => :production,
  7. :raise_errors => true
  8. )
  9.  
  10. log = File.new("sinatra.log", "a")
  11. STDOUT.reopen(log)
  12. STDERR.reopen(log)
  13.  
  14. require 'test.rb'
  15. run Sinatra.application
Add Comment
Please, Sign In to add comment