many important fixes

This commit is contained in:
2020-02-29 11:43:00 -05:00
parent 2149345d3d
commit 73c207c324
28 changed files with 1463 additions and 242 deletions
+14
View File
@@ -0,0 +1,14 @@
require 'sinatra'
require 'pry'
# start this server using:
# ruby __FILE__
Process.setproctitle("faye mock server")
set :port, 9296
get '/' do |*args|
"Hello world from /"
end
get '/faye' do |*args|
"Hello world from /faye"
end